Skip to content

Commit 24f7fb8

Browse files
GCC compilation error fix
1 parent 8f55070 commit 24f7fb8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tools.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,16 @@ typedef struct {
8989
void *deep;
9090
} DEEP_PRELUDE;
9191

92-
void luaG_push_proxy( lua_State *L, luaG_IdFunction idfunc, DEEP_PRELUDE *deep_userdata);
93-
void luaG_inter_copy_package( lua_State* L, lua_State* L2, int _idx, enum eLookupMode mode_);
94-
9592
enum eLookupMode
9693
{
9794
eLM_LaneBody, // send the lane body directly from the source to the destination lane
9895
eLM_ToKeeper, // send a function from a lane to a keeper state
99-
eLM_FromKeeper, // send a function from a keeper state to a lane
96+
eLM_FromKeeper // send a function from a keeper state to a lane
10097
};
10198

99+
void luaG_push_proxy( lua_State *L, luaG_IdFunction idfunc, DEEP_PRELUDE *deep_userdata);
100+
void luaG_inter_copy_package( lua_State* L, lua_State* L2, int _idx, enum eLookupMode mode_);
101+
102102
int luaG_inter_copy( lua_State *L, lua_State *L2, uint_t n, enum eLookupMode mode_);
103103
int luaG_inter_move( lua_State *L, lua_State *L2, uint_t n, enum eLookupMode mode_);
104104

0 commit comments

Comments
 (0)