diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2022-12-26 08:03:53 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2022-12-26 08:03:53 +0100 |
commit | f9df8ec356b1e18bf46c9a35bec78ed025107376 (patch) | |
tree | 240b81878869766901363c0e8efd8a0fb9a4e05b | |
parent | a466ee5c2e00c179e66c76a2235c3dde5732d908 (diff) | |
download | kit-f9df8ec356b1e18bf46c9a35bec78ed025107376.zip |
Unused argument
-rw-r--r-- | source/kit/async_function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/kit/async_function.h b/source/kit/async_function.h index 58d432c..cf2de81 100644 --- a/source/kit/async_function.h +++ b/source/kit/async_function.h @@ -232,8 +232,8 @@ typedef struct { } \ } while (0) -#define KIT_AF_FINISHED_ALL(return_, promises_, size_) \ - KIT_AF_FINISHED_N((return_), (promises_), \ +#define KIT_AF_FINISHED_ALL(return_, promises_) \ + KIT_AF_FINISHED_N((return_), (promises_), \ sizeof(promises_) / sizeof((promises_)[0])) #define KIT_AF_AWAIT_N(promises_, size_) \ |