]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/compiler.qh
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / compiler.qh
1 #pragma once
2
3 #ifndef QCC_SUPPORT_ACCUMULATE
4 #ifdef GMQCC
5 #define QCC_SUPPORT_ACCUMULATE
6 #endif
7 #endif
8
9 #ifndef QCC_SUPPORT_NIL
10 #ifdef GMQCC
11 #define QCC_SUPPORT_NIL
12 #endif
13 #endif
14
15 #ifndef QCC_SUPPORT_ERASEABLE
16 #ifdef GMQCC
17 #define QCC_SUPPORT_ERASEABLE
18 #endif
19 #endif
20
21 // uncrustify segfaults on this
22 // *INDENT-OFF*
23 #ifdef GMQCC
24         #define LABEL(id) :id
25 #else
26         #define LABEL(id) id:
27 #endif
28 // *INDENT_ON*