summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-01-16 19:52:20 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-01-16 19:52:35 +0200
commitde77dc3ed353dce209d068a8bab9a7048e2cb0a7 (patch)
treee16183892e2d58c3df94623e84caf41830529666 /indra
parentbea930071f470fb9a8d61fdd5dd8cc0deec9f95b (diff)
MacOS Build fix
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/llstring.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcommon/llstring.h b/indra/llcommon/llstring.h
index 7ba5c8c241..1fd6cac14a 100644
--- a/indra/llcommon/llstring.h
+++ b/indra/llcommon/llstring.h
@@ -1668,13 +1668,13 @@ std::basic_string<T> LLStringUtilBase<T>::quote(const string_type& str,
// For whatever reason, we must quote this string.
string_type result;
result.push_back('"');
- for (typename const S8 c : str)
+ for (typename string_type::const_iterator ci(str.begin()), cend(str.end()); ci != cend; ++ci)
{
- if (c == '"')
+ if (*ci == '"')
{
result.append(escape);
}
- result.push_back(c);
+ result.push_back(*ci);
}
result.push_back('"');
return result;