diff options
author | Max Kellermann <max@musicpd.org> | 2020-01-03 15:49:29 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-01-03 15:55:06 +0100 |
commit | 4937d77cb651462d8c24827b4512f6eb22f83601 (patch) | |
tree | 26bc504f416a463b101d69145266e13bad2f8d67 /src/command/FileCommands.cxx | |
parent | 53f805318894b62867d44be66bb9f4b7e2e7a1bf (diff) |
util/{Const,Writable}Buffer: drop "_type" from type names
Behave like STL.
Diffstat (limited to 'src/command/FileCommands.cxx')
-rw-r--r-- | src/command/FileCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx index 301b309fd..5046d378e 100644 --- a/src/command/FileCommands.cxx +++ b/src/command/FileCommands.cxx @@ -48,7 +48,7 @@ gcc_pure static bool -SkipNameFS(PathTraitsFS::const_pointer_type name_fs) noexcept +SkipNameFS(PathTraitsFS::const_pointer name_fs) noexcept { return name_fs[0] == '.' && (name_fs[1] == 0 || |