diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-21 19:19:57 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-21 19:48:58 +0200 |
commit | 855eea7ddf9e1de9226036ca94ccb03ac0e311b9 (patch) | |
tree | 0c7324cc10c66b5dc5799b1ed22ede703f83106d | |
parent | 3ffe63b8a4e8a3ceda3f6d204e4b5bb0c80d0870 (diff) |
viewer#851 Xcode buildfix
-rw-r--r-- | indra/llcommon/llstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp index bdd4c2c4bb..48551ab375 100644 --- a/indra/llcommon/llstring.cpp +++ b/indra/llcommon/llstring.cpp @@ -801,7 +801,7 @@ std::optional<std::wstring> llstring_getoptenv(const std::string& key) #else // ! LL_WINDOWS -boost::optional<std::string> llstring_getoptenv(const std::string& key) +std::optional<std::string> llstring_getoptenv(const std::string& key) { auto found = getenv(key.c_str()); if (found) |