summaryrefslogtreecommitdiff
path: root/indra/llcommon/llkeybind.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-10-08 18:31:52 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-10-08 18:31:52 +0300
commitb16ede862f3e1414eee044c5a2b49017706af943 (patch)
tree5e223816b20f02185a487224d8dcc0dbf406142d /indra/llcommon/llkeybind.cpp
parenta301fb2876835f799317f8a011f368eaec4894d6 (diff)
parenta43b2106853b516248a2e657a28084b7d906cf5f (diff)
Merge branch 'develop' into marchcat/xcode-16
# Conflicts: # .github/workflows/build.yaml # indra/llmath/raytrace.cpp
Diffstat (limited to 'indra/llcommon/llkeybind.cpp')
-rw-r--r--indra/llcommon/llkeybind.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llkeybind.cpp b/indra/llcommon/llkeybind.cpp
index 34254f3ef5..73a207504e 100644
--- a/indra/llcommon/llkeybind.cpp
+++ b/indra/llcommon/llkeybind.cpp
@@ -175,7 +175,7 @@ LLKeyBind::LLKeyBind(const LLSD &key_bind)
}
}
-bool LLKeyBind::operator==(const LLKeyBind& rhs)
+bool LLKeyBind::operator==(const LLKeyBind& rhs) const
{
auto size = mData.size();
if (size != rhs.mData.size()) return false;
@@ -188,7 +188,7 @@ bool LLKeyBind::operator==(const LLKeyBind& rhs)
return true;
}
-bool LLKeyBind::operator!=(const LLKeyBind& rhs)
+bool LLKeyBind::operator!=(const LLKeyBind& rhs) const
{
auto size = mData.size();
if (size != rhs.mData.size()) return true;