Require semicolon after most engine API macros

This commit is contained in:
2023-07-30 00:56:00 +03:00
committed by Ari Vuollet
parent c81ddd09cc
commit 0b695e7fea
17 changed files with 91 additions and 86 deletions

View File

@@ -39,7 +39,7 @@ public:
const Char* Name;
int32 Order;
#define DECLARE_ENGINE_SERVICE_EVENT(result, name) virtual result name(); static void On##name();
#define DECLARE_ENGINE_SERVICE_EVENT(result, name) virtual result name(); static void On##name()
DECLARE_ENGINE_SERVICE_EVENT(bool, Init);
DECLARE_ENGINE_SERVICE_EVENT(void, FixedUpdate);
DECLARE_ENGINE_SERVICE_EVENT(void, Update);