diff options
author | Max Kellermann <max@musicpd.org> | 2020-10-28 17:33:10 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-10-28 17:33:10 +0100 |
commit | bb99cf37e3f48c851bea671566cd9923d771396d (patch) | |
tree | beac1e78e7261e54e20eeceeab71a4aaa889ef23 /src/util | |
parent | 7c47fe746cf2eb45863532201339de6f230f4bff (diff) | |
parent | dc432f3ffa9b1c8a60b9224c0ae00a40b8b819d1 (diff) |
Merge tag 'v0.22.2' into master
release v0.22.2
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/FormatString.hxx | 6 |
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> |