aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NorthstarDLL/squirrel/squirrelautobind.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/NorthstarDLL/squirrel/squirrelautobind.h b/NorthstarDLL/squirrel/squirrelautobind.h
index 865479a1..19ecb808 100644
--- a/NorthstarDLL/squirrel/squirrelautobind.h
+++ b/NorthstarDLL/squirrel/squirrelautobind.h
@@ -21,16 +21,16 @@ class __squirrelautobind;
__squirrelautobind CONCAT2(__squirrelautobind, __LINE__)( \
[]() \
{ \
- if constexpr (runOnContext & ScriptContext::UI) \
+ if constexpr ((runOnContext)&ScriptContext::UI) \
g_pSquirrel<ScriptContext::UI>->AddFuncRegistration( \
returnType, __STR(funcName), argTypes, helpText, CONCAT2(Script_, funcName) < ScriptContext::UI >); \
- if constexpr (runOnContext & ScriptContext::CLIENT) \
+ if constexpr ((runOnContext)&ScriptContext::CLIENT) \
g_pSquirrel<ScriptContext::CLIENT>->AddFuncRegistration( \
returnType, __STR(funcName), argTypes, helpText, CONCAT2(Script_, funcName) < ScriptContext::CLIENT >); \
}, \
[]() \
{ \
- if constexpr (runOnContext & ScriptContext::SERVER) \
+ if constexpr ((runOnContext)&ScriptContext::SERVER) \
g_pSquirrel<ScriptContext::SERVER>->AddFuncRegistration( \
returnType, __STR(funcName), argTypes, helpText, CONCAT2(Script_, funcName) < ScriptContext::SERVER >); \
}); \
@@ -44,15 +44,15 @@ class __squirrelautobind;
__squirrelautobind CONCAT2(__squirrelautobind, __LINE__)( \
[]() \
{ \
- if constexpr (runOnContext & ScriptContext::UI) \
+ if constexpr ((runOnContext)&ScriptContext::UI) \
g_pSquirrel<ScriptContext::UI>->AddFuncOverride(__STR(funcName), CONCAT2(Script_, funcName) < ScriptContext::UI >); \
- if constexpr (runOnContext & ScriptContext::CLIENT) \
+ if constexpr ((runOnContext)&ScriptContext::CLIENT) \
g_pSquirrel<ScriptContext::CLIENT>->AddFuncOverride( \
__STR(funcName), CONCAT2(Script_, funcName) < ScriptContext::CLIENT >); \
}, \
[]() \
{ \
- if constexpr (runOnContext & ScriptContext::SERVER) \
+ if constexpr ((runOnContext)&ScriptContext::SERVER) \
g_pSquirrel<ScriptContext::SERVER>->AddFuncOverride( \
__STR(funcName), CONCAT2(Script_, funcName) < ScriptContext::SERVER >); \
}); \