Advertisement
pb_jiang

debug macro

Jul 18th, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.00 KB | None | 0 0
  1. #define DEBUG
  2. #ifdef DEBUG
  3. #define DEBUG_CMD(cmd)                                                                             \
  4.     do {                                                                                           \
  5.         cmd;                                                                                       \
  6.     } while (false)
  7. #else
  8. #define DEBUG_CMD(cmd)                                                                             \
  9.     do {                                                                                           \
  10.         ;                                                                                          \
  11.     } while (false)
  12. #endif
  13. #define _DEBUG_CMD(cmd)                                                                            \
  14.     do {                                                                                           \
  15.         ;                                                                                          \
  16.     } while (false)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement