summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-10-28 17:33:10 +0100
committerMax Kellermann <max@musicpd.org>2020-10-28 17:33:10 +0100
commitbb99cf37e3f48c851bea671566cd9923d771396d (patch)
treebeac1e78e7261e54e20eeceeab71a4aaa889ef23 /src/util
parent7c47fe746cf2eb45863532201339de6f230f4bff (diff)
parentdc432f3ffa9b1c8a60b9224c0ae00a40b8b819d1 (diff)
Merge tag 'v0.22.2' into master
release v0.22.2
Diffstat (limited to 'src/util')
-rw-r--r--src/util/FormatString.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/FormatString.hxx b/src/util/FormatString.hxx
index e1ecc8500..465ac7956 100644
--- a/src/util/FormatString.hxx
+++ b/src/util/FormatString.hxx
@@ -27,16 +27,14 @@
template<typename T> class AllocatedString;
/**
- * Format into a newly allocated string. The caller frees the return
- * value with delete[].
+ * Format into an #AllocatedString.
*/
gcc_nonnull_all
AllocatedString<char>
FormatStringV(const char *fmt, std::va_list args) noexcept;
/**
- * Format into a newly allocated string. The caller frees the return
- * value with delete[].
+ * Format into an #AllocatedString.
*/
gcc_nonnull(1) gcc_printf(1,2)
AllocatedString<char>