util/StringPointer: rename typedef pointer to pointer_type

This commit is contained in:
Max Kellermann
2016-04-12 22:49:03 +02:00
parent fd5d42836f
commit 9b85446808
17 changed files with 116 additions and 111 deletions

View File

@@ -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;