From e687250b90e63e71c9115ed97c3efd60ceefbcb6 Mon Sep 17 00:00:00 2001 From: Andrey Lihatskiy Date: Mon, 29 Jul 2024 13:46:19 +0300 Subject: Build fix - string type conversion in lldir_test.cpp (#2133) --- indra/llfilesystem/tests/lldir_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "\") -- cgit v1.2.3