diff options
author | Max Kellermann <max@duempel.org> | 2016-04-12 22:49:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-04-12 22:53:06 +0200 |
commit | 9b854468087a620e8fd442a5e764858f5454f48e (patch) | |
tree | 96459ef22f999f5ff8593f5e018a3205b012f89b /src/storage/plugins | |
parent | fd5d42836f65f7fdd0fe4ec0fa42b2452fdfc930 (diff) |
util/StringPointer: rename typedef pointer to pointer_type
Diffstat (limited to 'src/storage/plugins')
-rw-r--r-- | src/storage/plugins/LocalStorage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/plugins/LocalStorage.cxx b/src/storage/plugins/LocalStorage.cxx index 675d2b1d4..191235975 100644 --- a/src/storage/plugins/LocalStorage.cxx +++ b/src/storage/plugins/LocalStorage.cxx @@ -161,7 +161,7 @@ LocalStorage::OpenDirectory(const char *uri_utf8, Error &error) gcc_pure static bool -SkipNameFS(PathTraitsFS::const_pointer name_fs) +SkipNameFS(PathTraitsFS::const_pointer_type name_fs) { return name_fs[0] == '.' && (name_fs[1] == 0 || |