Created
March 11, 2013 03:33
-
-
Save chaelim/5131715 to your computer and use it in GitHub Desktop.
C++ Macros
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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