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/CommandLine.cxx | |
parent | fd5d42836f65f7fdd0fe4ec0fa42b2452fdfc930 (diff) |
util/StringPointer: rename typedef pointer to pointer_type
Diffstat (limited to 'src/CommandLine.cxx')
-rw-r--r-- | src/CommandLine.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx index d7eb2a1de..696a79474 100644 --- a/src/CommandLine.cxx +++ b/src/CommandLine.cxx @@ -280,7 +280,7 @@ class ConfigLoader public: bool TryFile(const Path path); bool TryFile(const AllocatedPath &base_path, - PathTraitsFS::const_pointer path); + PathTraitsFS::const_pointer_type path); }; bool ConfigLoader::TryFile(Path path) @@ -293,7 +293,7 @@ bool ConfigLoader::TryFile(Path path) } bool ConfigLoader::TryFile(const AllocatedPath &base_path, - PathTraitsFS::const_pointer path) + PathTraitsFS::const_pointer_type path) { if (base_path.IsNull()) return false; |