Skip to content

Instantly share code, notes, and snippets.

@chaelim
Created March 11, 2013 03:33
Show Gist options
  • Save chaelim/5131715 to your computer and use it in GitHub Desktop.
Save chaelim/5131715 to your computer and use it in GitHub Desktop.
C++ Macros
#if _MSC_VER
#define COMPILER_CHECK(expr, msg) typedef char COMPILE_ERROR_##msg[1][(expr)]
#else
#define COMPILER_CHECK(expr, msg) typedef char COMPILE_ERROR_##msg[1][(expr)?1:-1]
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment