Skip to content

Commit

Permalink
fix: add missing 'async to FOR_EACH_ECSACT_API_FN macro (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy authored Aug 14, 2024
1 parent 877ed85 commit 5df4132
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,6 @@ cc_library(
":meta",
":serialize",
":static",
":async",
],
)
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 5df4132

Please sign in to comment.