diff options
| author | Rye <rye@alchemyviewer.org> | 2025-10-19 23:16:49 -0400 |
|---|---|---|
| committer | Rye <rye@alchemyviewer.org> | 2025-10-27 04:59:14 -0400 |
| commit | 8890372a116cd6db0a1a43dcce753b9070d86b49 (patch) | |
| tree | 10735da602e77aa7864b11af48e6069420b91cfe /indra/llcommon/llkeybind.cpp | |
| parent | 4abc945bd9dd666c99965adecdfc29aa1c1fdb0d (diff) | |
Fix numerous compiler warnings from GCC under Ubuntu 22.04
Signed-off-by: Rye <rye@alchemyviewer.org>
Diffstat (limited to 'indra/llcommon/llkeybind.cpp')
| -rw-r--r-- | indra/llcommon/llkeybind.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/indra/llcommon/llkeybind.cpp b/indra/llcommon/llkeybind.cpp index e36c1d0a4c..abb0df0b87 100644 --- a/indra/llcommon/llkeybind.cpp +++ b/indra/llcommon/llkeybind.cpp @@ -114,15 +114,6 @@ void LLKeyData::reset() mIgnoreMasks = false; } -LLKeyData& LLKeyData::operator=(const LLKeyData& rhs) -{ - mMouse = rhs.mMouse; - mKey = rhs.mKey; - mMask = rhs.mMask; - mIgnoreMasks = rhs.mIgnoreMasks; - return *this; -} - bool LLKeyData::operator==(const LLKeyData& rhs) { if (mMouse != rhs.mMouse) return false; |
