Skip to content

Commit

Permalink
fix: add missing 'async to FOR_EACH_ECSACT_API_FN macro
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Aug 14, 2024
1 parent ee8d1cb commit 6ce67c2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions ecsact/runtime.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
#include "ecsact/runtime/static.h"
#include "ecsact/runtime/meta.h"
#include "ecsact/runtime/serialize.h"
#include "ecsact/runtime/async.h"

#define FOR_EACH_ECSACT_API_FN(fn, ...) \
FOR_EACH_ECSACT_CORE_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_DYNAMIC_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_META_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_STATIC_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_SERIALIZE_API_FN(fn, __VA_ARGS__)
#define FOR_EACH_ECSACT_API_FN(fn, ...) \
FOR_EACH_ECSACT_CORE_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_DYNAMIC_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_META_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_STATIC_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_SERIALIZE_API_FN(fn, __VA_ARGS__); \
FOR_EACH_ECSACT_ASYNC_API_FN(fn, __VA_ARGS__)

#endif // ECSACT_RUNTIME_H

0 comments on commit 6ce67c2

Please sign in to comment.