fs/Path: use the "const_pointer" typedef

This commit is contained in:
Max Kellermann 2015-03-05 08:45:55 +01:00
parent 5222c684d3
commit 5c5ea8a254
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ Path::ToUTF8() const
return ::PathToUTF8(c_str());
}
const char *
Path::const_pointer
Path::GetSuffix() const
{
return uri_get_suffix(c_str());

View File

@ -173,7 +173,7 @@ public:
}
gcc_pure
const char *GetSuffix() const;
const_pointer GetSuffix() const;
};
#endif