summaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorMax Kellermann <mk@cm4all.com>2021-01-14 12:39:45 +0100
committerMax Kellermann <max@musicpd.org>2021-03-04 18:03:56 +0100
commitcfb7f8ab84ca4c2d6d2f2826f893992c27a7f591 (patch)
tree78a5491811fa0384e1a810fe46a82bbdb04a06fb /src/fs
parent8d80280ab9ac9ec17abd981990771ea9927767a3 (diff)
util/AllocatedString: rename to BasicAllocatedString
To make things simpler, AllocatedString is now a non-template class.
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/NarrowPath.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/NarrowPath.hxx b/src/fs/NarrowPath.hxx
index c74999f44..740342d7d 100644
--- a/src/fs/NarrowPath.hxx
+++ b/src/fs/NarrowPath.hxx
@@ -36,7 +36,7 @@
*/
class NarrowPath {
#ifdef _UNICODE
- using Value = AllocatedString<>;
+ using Value = AllocatedString;
#else
using Value = StringPointer<>;
#endif