diff options
| author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-10-13 19:18:39 +0200 | 
|---|---|---|
| committer | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-10-13 19:18:39 +0200 | 
| commit | 5f8ca69388ec0dc2ed15d45f4894e52bf0a2c304 (patch) | |
| tree | e6a9f080138fecb3ff0fee5255d0b2110ff1b52c /indra | |
| parent | 988b4eaa2f76d62b45efbe048c09055afcb0a6ef (diff) | |
SL-20422 Mac build fix
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llslurl.cpp | 5 | 
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)  | 
