summaryrefslogtreecommitdiff
path: root/indra/llcommon/llsdutil.cpp
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-17 14:01:08 -0700
committercallum_linden <none@none>2014-10-17 14:01:08 -0700
commit5c5821b7583bf55889bb13147376919553727a01 (patch)
tree613affe02e38cc3bf40ca77848b0c9587b19858d /indra/llcommon/llsdutil.cpp
parentb2d84b5fc68e947e59b96289a357bd2f515c896c (diff)
Update to build on Xcode 6.0: clang warned about comparison of unsigned int to >=0 - correct ifx here is to retype the variable as signed
Diffstat (limited to 'indra/llcommon/llsdutil.cpp')
-rwxr-xr-xindra/llcommon/llsdutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsdutil.cpp b/indra/llcommon/llsdutil.cpp
index 562fd26658..6ad4a97149 100755
--- a/indra/llcommon/llsdutil.cpp
+++ b/indra/llcommon/llsdutil.cpp
@@ -572,7 +572,7 @@ std::string llsd_matches(const LLSD& prototype, const LLSD& data, const std::str
return match_types(prototype.type(), TypeVector(), data.type(), pfx);
}
-bool llsd_equals(const LLSD& lhs, const LLSD& rhs, unsigned bits)
+bool llsd_equals(const LLSD& lhs, const LLSD& rhs, int bits)
{
// We're comparing strict equality of LLSD representation rather than
// performing any conversions. So if the types aren't equal, the LLSD