diff options
author | callum_linden <none@none> | 2014-10-20 15:20:10 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-20 15:20:10 -0700 |
commit | cad1df584be0ed62e4ae0393b84e57f192009da5 (patch) | |
tree | 4b569d318ba5fbe511d5b2b9f350b40f1093b613 /indra/llcommon | |
parent | 52347307796ba94515312bfceff04e0612e7f234 (diff) |
Update to build on Xcode 6.0: fix typo in functions params
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llpredicate.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/llcommon/llpredicate.h b/indra/llcommon/llpredicate.h index 91d96e64f5..e6c56a5711 100644 --- a/indra/llcommon/llpredicate.h +++ b/indra/llcommon/llpredicate.h @@ -139,10 +139,9 @@ namespace LLPredicate Rule() {} - void require(ENUM e) + void require(ENUM e, bool match) { - // TEMP XCODE6FIX checkin while i figure out what the heck this is supposed to mean - // mRule.set(e, require); + mRule.set(e, match); } void allow(ENUM e) |