From 61e656e732e92cf110a2b18d9a7282b52212e63c Mon Sep 17 00:00:00 2001 From: Luke Street Date: Fri, 17 Apr 2020 15:01:31 -0400 Subject: [PATCH] CDvdFile: Remove const from auto type for MSVC --- Runtime/CDvdFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/CDvdFile.cpp b/Runtime/CDvdFile.cpp index 80e3f81e5..33b109ac4 100644 --- a/Runtime/CDvdFile.cpp +++ b/Runtime/CDvdFile.cpp @@ -96,7 +96,7 @@ std::shared_ptr 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; }