coord/ops: add logical or, and logical and for bools

This commit is contained in:
Danny Robson 2016-09-23 13:39:13 +10:00
parent 109d47e971
commit b7d141322c

View File

@ -752,6 +752,8 @@ namespace util {
VECTOR_OP(>)
VECTOR_OP(<=)
VECTOR_OP(>=)
VECTOR_OP(&&)
VECTOR_OP(||)
#undef VECTOR_OP
@ -780,6 +782,8 @@ namespace util {
SCALAR_OP(>)
SCALAR_OP(<=)
SCALAR_OP(>=)
SCALAR_OP(&&)
SCALAR_OP(||)
#undef SCALAR_OP