2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-16 19:11:22 +00:00

CDvdFile: Remove const from auto type for MSVC

This commit is contained in:
Luke Street 2020-04-17 15:01:31 -04:00
parent 36bbc5004f
commit 61e656e732

View File

@ -96,7 +96,7 @@ std::shared_ptr<IDvdRequest> CDvdFile::AsyncSeekRead(void* buf, u32 len, ESeekOr
}
hecl::ProjectPath CDvdFile::ResolvePath(std::string_view path) {
const auto* start = path.begin();
auto start = path.begin();
while (*start == '/') {
++start;
}