summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-10-13 19:18:39 +0200
committerAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-10-13 19:20:09 +0200
commit8d27c7db426f9a1b5d994d93247318100865c368 (patch)
treefb8015cda550ed7706a3728545f92d234b330c9c /indra
parentcdbca65653c3717d5833e66f1a37f5b0b4559bd3 (diff)
SL-20422 Mac build fix
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llslurl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llslurl.cpp b/indra/newview/llslurl.cpp
index 3858a1b9ce..262ea3ca1f 100644
--- a/indra/newview/llslurl.cpp
+++ b/indra/newview/llslurl.cpp
@@ -459,9 +459,10 @@ bool LLSLURL::operator ==(const LLSLURL& rhs)
case HOME_LOCATION:
case LAST_LOCATION:
return true;
- }
- return false;
+ default:
+ return false;
+ }
}
bool LLSLURL::operator !=(const LLSLURL& rhs)