Skip to content

Commit 0bc5bf4

Browse files
committed
Fix Linux build issue
1 parent cc71eb1 commit 0bc5bf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ElunaTemplate.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ class ElunaObjectValueImpl : public ElunaObject
143143

144144
#define ELUNA_MATH_OP(type, func, op) \
145145
template<> \
146-
static int ElunaTemplate<type>::func(lua_State* L) { \
146+
int ElunaTemplate<type>::func(lua_State* L) { \
147147
return ElunaTemplateHelper<type>::PerformOp(L, std::op()); \
148148
}
149149

150150
#define ELUNA_SIMPLE_FORWARD(type, func) \
151151
template<> \
152-
static int ElunaTemplate<type>::func(lua_State* L) { \
152+
int ElunaTemplate<type>::func(lua_State* L) { \
153153
return ElunaTemplateHelper<type>::func(L); \
154154
}
155155

0 commit comments

Comments
 (0)