diff options
author | callum_linden <none@none> | 2014-10-17 13:27:48 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-17 13:27:48 -0700 |
commit | 4785da9b9f786d761828f711cfda401974cd9238 (patch) | |
tree | b34c5854018f64795dbdc54649b5ca972b246c88 | |
parent | aca7976b8770aa7464bdba717d508372732f0e39 (diff) |
Update to build on Xcode 6.0: TEMP fix to remove broken code (clang) until it's true purpose becomes clear
-rw-r--r-- | indra/llcommon/llpredicate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llpredicate.h b/indra/llcommon/llpredicate.h index a0e970a799..91d96e64f5 100644 --- a/indra/llcommon/llpredicate.h +++ b/indra/llcommon/llpredicate.h @@ -141,7 +141,8 @@ namespace LLPredicate void require(ENUM e) { - mRule.set(e, require); + // TEMP XCODE6FIX checkin while i figure out what the heck this is supposed to mean + // mRule.set(e, require); } void allow(ENUM e) |