Keep the dir trailing slash in split_path
This commit is contained in:
parent
762643d320
commit
52cd08915d
|
@ -60,7 +60,7 @@ std::pair<StringView, StringView> split_path(StringView path)
|
|||
if (it == path.rend())
|
||||
return { {}, path };
|
||||
const char* slash = it.base()-1;
|
||||
return { {path.begin(), slash}, {slash+1, path.end()} };
|
||||
return { {path.begin(), slash+1}, {slash+1, path.end()} };
|
||||
}
|
||||
|
||||
String real_path(StringView filename)
|
||||
|
|
Loading…
Reference in New Issue
Block a user