diff options
author | Richard Linden <none@none> | 2012-10-23 23:35:15 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-23 23:35:15 -0700 |
commit | 1de6ecb23851e0784016a2c4c9f691c976c6bda7 (patch) | |
tree | be77ebb9db925016dd7b4c5627ac4d7533c56539 /indra/llcommon/llpredicate.cpp | |
parent | 28179ab0070a1c13193808bc1493761a8fed167f (diff) |
SH-3405 WIP convert existing stats to lltrace system
converted "int" to "S32"
Diffstat (limited to 'indra/llcommon/llpredicate.cpp')
-rw-r--r-- | indra/llcommon/llpredicate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llpredicate.cpp b/indra/llcommon/llpredicate.cpp index 1ab1ab08f1..e3410ef3f6 100644 --- a/indra/llcommon/llpredicate.cpp +++ b/indra/llcommon/llpredicate.cpp @@ -31,10 +31,10 @@ namespace LLPredicate { EmptyRule make_rule() { return EmptyRule(); } - int predicateFlagsFromValue(int value) + S32 predicateFlagsFromValue(S32 value) { llassert(value < 5); - static const int predicates[5] = + static const S32 predicates[5] = { 0xAAAAaaaa, // 10101010101010101010101010101010 0xCCCCcccc, // 11001100110011001100110011001100 |