1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/* PERMUTE_ARGS: -O
* If not careful, this can produce exponential tree traversal times
* when compiling the generated opEquals() function.
*/
struct Param
{
bool verbose;
bool vcg_ast;
bool showColumns;
bool vtls;
bool vtemplates;
bool vgc;
bool vfield;
bool vcomplex;
int useDeprecated;
bool stackstomp;
bool useUnitTests;
bool useInline;
bool useDIP25;
bool noDIP25;
bool useDIP1021;
bool release;
bool a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z;
uint debuglevel;
void* debugids;
uint versionlevel;
void* versionids;
const(char)[] defaultlibname;
const(char)[] debuglibname;
const(char) mscrtlib;
void* moduleDeps;
int messageStyle = 1;
}
struct Global
{
Param params;
}
|