src/macros.h

changeset 134
eca2fc0acaa2
parent 133
dbbdb870c835
child 139
cf11621ae422
equal deleted inserted replaced
133:dbbdb870c835 134:eca2fc0acaa2
27 */ 27 */
28 28
29 #ifndef BOTC_MACROS_H 29 #ifndef BOTC_MACROS_H
30 #define BOTC_MACROS_H 30 #define BOTC_MACROS_H
31 31
32 #if !defined (__cplusplus) || __cplusplus < 201103L 32 #if !defined (__cplusplus) or __cplusplus < 201103L
33 # error botc requires a C++11-compliant compiler to be built 33 # error botc requires a C++11-compliant compiler to be built
34 #endif 34 #endif
35 35
36 // Application name and version 36 // Application name and version
37 #define APPNAME "botc" 37 #define APPNAME "botc"
44 44
45 #define MAKE_VERSION_NUMBER(MAJ, MIN, PAT) ((MAJ * 10000) + (MIN * 100) + PAT) 45 #define MAKE_VERSION_NUMBER(MAJ, MIN, PAT) ((MAJ * 10000) + (MIN * 100) + PAT)
46 #define VERSION_NUMBER MAKE_VERSION_NUMBER (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) 46 #define VERSION_NUMBER MAKE_VERSION_NUMBER (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
47 47
48 // On Windows, files are case-insensitive 48 // On Windows, files are case-insensitive
49 #if (defined(WIN32) || defined(_WIN32) || defined(__WIN32)) && !defined(__CYGWIN__) 49 #if (defined(WIN32) or defined(_WIN32) or defined(__WIN32)) and !defined(__CYGWIN__)
50 # define FILE_CASEINSENSITIVE 50 # define FILE_CASEINSENSITIVE
51 #endif 51 #endif
52 52
53 #define named_enum enum 53 #define named_enum enum
54 #define elif else if 54 #define elif else if
62 #define deprecated __attribute__ ((deprecated)) 62 #define deprecated __attribute__ ((deprecated))
63 63
64 template<typename... argtypes> 64 template<typename... argtypes>
65 void error (const char* fmtstr, const argtypes&... args); 65 void error (const char* fmtstr, const argtypes&... args);
66 66
67 #ifdef DEBUG 67 #ifndef RELEASE
68 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) ((A OP B) ? (void) 0 : \ 68 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) ((A OP B) ? (void) 0 : \
69 error ("assertion failed at " __FILE__ ":" MACRO_TO_STRING(__LINE__) ": " #A " (%1) " COMPLAINT " " #B " (%2)", A, B)); 69 error ("assertion failed at " __FILE__ ":" MACRO_TO_STRING(__LINE__) ": " #A " (%1) " COMPLAINT " " #B " (%2)", A, B));
70 #else 70 #else
71 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) {} 71 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) {}
72 #endif 72 #endif

mercurial