SW Task Event Loop Framework v1.0.0
High-performance C++ asynchronous event loop framework with timer management and promise-based programming
Loading...
Searching...
No Matches
DebugMacro.h
Go to the documentation of this file.
1// DebugMacro.h
2#ifdef DEBUG
3#define post(...) post_internal(__VA_ARGS__, __FILE__, __LINE__, __func__)
4#else
5#define post(...) post_internal(__VA_ARGS__, nullptr, 0, nullptr)
6#endif