diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-04 02:04:51 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-04 02:04:51 +0330 |
commit | 5c0542111e67d60490c7e218b985d6c6b9eaf9f2 (patch) | |
tree | 8f261ef4cb17dbb6fe5e46af2ba18f836d55caf6 /src/utils/log.h | |
parent | 052ff9cc03544f29e1c3c79f09b6b0f3fb989532 (diff) |
arg names are in function types now
Diffstat (limited to 'src/utils/log.h')
-rw-r--r-- | src/utils/log.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/log.h b/src/utils/log.h index a0d48a6..510170f 100644 --- a/src/utils/log.h +++ b/src/utils/log.h @@ -5,6 +5,7 @@ #define printWarning(begin,end,format,...) _printErrorWarningBack(__FILE_NAME__, __LINE__, begin, end, false, format, ## __VA_ARGS__) #define UNREACHABLE printLog("Unreachable");exit(1) +#define NOT_IMPLEMENTED printLog("Not implemented");exit(1) extern void _printLogBack(const char *format, const char *file, int line, ...); |