removing redundant function modifier

This commit is contained in:
Adalberto Foresti 2016-10-01 18:09:19 -07:00
Родитель e944487f45
Коммит 01438d0ea3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -54,7 +54,7 @@ inline std::string basename(std::string const &pathname)
return std::string(std::find_if(pathname.rbegin(), pathname.rend(), MatchPathSeparator()).base(), pathname.end()); return std::string(std::find_if(pathname.rbegin(), pathname.rend(), MatchPathSeparator()).base(), pathname.end());
} }
static inline std::wstring basename(std::wstring const &pathname) inline std::wstring basename(std::wstring const &pathname)
{ {
return std::wstring(std::find_if(pathname.rbegin(), pathname.rend(), MatchPathSeparator()).base(), pathname.end()); return std::wstring(std::find_if(pathname.rbegin(), pathname.rend(), MatchPathSeparator()).base(), pathname.end());
} }