comparison dmd/module.h @ 751:dc8b8b7ea0c1

Fix compile-time warnings. Adjust include in d-asm-i386.
author Christian Kamm <kamm incasoftware de>
date Mon, 03 Nov 2008 12:35:29 +0100
parents 06576ece1a1b
children ba390e5e9150
comparison
equal deleted inserted replaced
750:d05fc504a3a0 751:dc8b8b7ea0c1
124 #if IN_GCC 124 #if IN_GCC
125 void parse(bool dump_source = false); // syntactic parse 125 void parse(bool dump_source = false); // syntactic parse
126 #else 126 #else
127 void parse(); // syntactic parse 127 void parse(); // syntactic parse
128 #endif 128 #endif
129 void semantic(); // semantic analysis 129 void semantic(Scope* unused_sc = NULL); // semantic analysis
130 void semantic2(); // pass 2 semantic analysis 130 void semantic2(Scope* unused_sc = NULL); // pass 2 semantic analysis
131 void semantic3(); // pass 3 semantic analysis 131 void semantic3(Scope* unused_sc = NULL); // pass 3 semantic analysis
132 void inlineScan(); // scan for functions to inline 132 void inlineScan(); // scan for functions to inline
133 #ifdef _DH 133 #ifdef _DH
134 void genhdrfile(); // generate D import file 134 void genhdrfile(); // generate D import file
135 #endif 135 #endif
136 void genobjfile(int multiobj, char** envp); 136 void genobjfile(int multiobj, char** envp);