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
// Is there a better way to do this?: | |
static int someIntegerValue = | |
#ifdef SOME_MACRO | |
4 | |
#else | |
2 | |
#endif | |
; | |
// Or even this?: |
NewerOlder