diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-07-29 13:46:19 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-07-29 13:47:46 +0300 |
commit | e687250b90e63e71c9115ed97c3efd60ceefbcb6 (patch) | |
tree | a88e5cfe0b436afcd0529977711f3fbe05c86f18 /indra | |
parent | c316eb5b2b3a25aaab6e9ef5e4850e9bb72ba635 (diff) |
Build fix - string type conversion in lldir_test.cpp (#2133)
Diffstat (limited to 'indra')
-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 "\") |