1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Remove trailing semicolon from NET_EVENT_HANDLER macro

This commit is contained in:
Alexander Wilms 2024-01-14 14:00:32 +00:00
parent d2b105f216
commit bc781c28e0
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ struct SetGlobalState
};
#define SET_GLOBAL_STATE(ai) SetGlobalState _hlpSetState(ai);
#define SET_GLOBAL_STATE(ai) SetGlobalState _hlpSetState(ai)
#define NET_EVENT_HANDLER SET_GLOBAL_STATE(this)
#define MAKING_TURN SET_GLOBAL_STATE(this)

View File

@ -66,7 +66,7 @@ struct SetGlobalState
};
#define SET_GLOBAL_STATE(ai) SetGlobalState _hlpSetState(ai);
#define SET_GLOBAL_STATE(ai) SetGlobalState _hlpSetState(ai)
#define NET_EVENT_HANDLER SET_GLOBAL_STATE(this)
#define MAKING_TURN SET_GLOBAL_STATE(this)