comparison: src/common.h
src/common.h
- changeset 227
- e13cd69b16dd
- parent 224
- 805bf9ef9529
- child 228
- 8cddb57489a7
equal
deleted
inserted
replaced
| 68 # define ATTR(N) |
68 # define ATTR(N) |
| 69 #endif // __GNUC__ |
69 #endif // __GNUC__ |
| 70 |
70 |
| 71 #ifdef WIN32 |
71 #ifdef WIN32 |
| 72 #define DIRSLASH "\\" |
72 #define DIRSLASH "\\" |
| |
73 #define DIRSLASH_CHAR '\\' |
| 73 #else // WIN32 |
74 #else // WIN32 |
| 74 #define DIRSLASH "/" |
75 #define DIRSLASH "/" |
| |
76 #define DIRSLASH_CHAR '/' |
| 75 #endif // WIN32 |
77 #endif // WIN32 |
| 76 |
78 |
| 77 #ifdef RELEASE |
79 #ifdef RELEASE |
| 78 #define NDEBUG // remove asserts |
80 #define NDEBUG // remove asserts |
| 79 #endif // RELEASE |
81 #endif // RELEASE |