summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-21 19:19:57 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-21 19:48:58 +0200
commit855eea7ddf9e1de9226036ca94ccb03ac0e311b9 (patch)
tree0c7324cc10c66b5dc5799b1ed22ede703f83106d
parent3ffe63b8a4e8a3ceda3f6d204e4b5bb0c80d0870 (diff)
viewer#851 Xcode buildfix
-rw-r--r--indra/llcommon/llstring.cpp2
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)