diff options
-rw-r--r-- | indra/llfilesystem/tests/lldir_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llfilesystem/tests/lldir_test.cpp b/indra/llfilesystem/tests/lldir_test.cpp index 15f2c0005d..4fa5769f65 100644 --- a/indra/llfilesystem/tests/lldir_test.cpp +++ b/indra/llfilesystem/tests/lldir_test.cpp @@ -432,7 +432,7 @@ namespace tut auto p = NamedTempFile::temp_path(); std::filesystem::create_directories(p.native()); - auto ret { p.native() }; + std::string ret = p.string(); // There's an implicit assumtion all over this code that the returned path ends with "/" (or "\") |