@@ -254,7 +254,7 @@ version (HTOD)
254254
255255// #include "token.h"
256256
257- alias uint stflags_t;
257+ alias stflags_t = uint ;
258258enum
259259{
260260 PFLpreprocessor = 1 , // in preprocessor
278278 PFLmfc = 0x10000 , // something will affect MFC compatibility
279279}
280280
281- alias char sthflags_t;
281+ alias sthflags_t = char ;
282282enum
283283{
284284 FLAG_INPLACE = 0 , // in place hydration
417417// char symbol_isintab(Symbol *s) { return sytab[s.Sclass] & SCSS; }
418418
419419// version (Windows)
420- alias char enum_SC;
420+ alias enum_SC = char ;
421421// else
422422// alias SC enum_SC;
423423
428428 * in a function. startblock heads the list.
429429 */
430430
431- alias void * ClassDeclaration_ ;
432- alias void * Declaration_ ;
433- alias void * Module_ ;
431+ alias ClassDeclaration_ = void * ;
432+ alias Declaration_ = void * ;
433+ alias Module_ = void * ;
434434
435435struct Blockx
436436{
@@ -454,7 +454,7 @@ struct Blockx
454454 }
455455}
456456
457- alias ushort bflags_t;
457+ alias bflags_t = ushort ;
458458enum
459459{
460460 BFLvisited = 1 , // set if block is visited
@@ -704,7 +704,7 @@ struct symtab_t
704704 Symbol ** tab; // local Symbol table
705705}
706706
707- alias uint func_flags_t;
707+ alias func_flags_t = uint ;
708708enum
709709{
710710 Fpending = 1 , // if function has been queued for being written
739739 Fsurrogate = 0x4000000 , // surrogate call function
740740}
741741
742- alias uint func_flags3_t;
742+ alias func_flags3_t = uint ;
743743enum
744744{
745745 Fvtblgen = 1 , // generate vtbl[] when this function is defined
@@ -846,7 +846,7 @@ struct meminit_t
846846 // called for it
847847}
848848
849- alias uint baseclass_flags_t;
849+ alias baseclass_flags_t = uint ;
850850enum
851851{
852852 BCFpublic = 1 , // base class is public
@@ -896,7 +896,7 @@ void baseclass_free(baseclass_t *b) { }
896896 * For virtual tables.
897897 */
898898
899- alias char mptr_flags_t;
899+ alias mptr_flags_t = char ;
900900enum
901901{
902902 MPTRvirtual = 1 , // it's an offset to a virtual base
@@ -1030,7 +1030,7 @@ struct template_t
10301030 * Special information for enums.
10311031 */
10321032
1033- alias uint enum_flags_t;
1033+ alias enum_flags_t = uint ;
10341034enum
10351035{
10361036 SENnotagname = 1 , // no tag name for enum
@@ -1050,7 +1050,7 @@ struct enum_t
10501050 * Special information for structs.
10511051 */
10521052
1053- alias uint struct_flags_t;
1053+ alias struct_flags_t = uint ;
10541054enum
10551055{
10561056 STRanonymous = 1 , // set for unions with no tag names
@@ -1541,7 +1541,7 @@ version (MARS)
15411541 * Psym SCtemplate for template-template-argument
15421542 */
15431543
1544- alias uint pflags_t;
1544+ alias pflags_t = uint ;
15451545enum
15461546{
15471547 PFexplicit = 1 , // this template argument was explicit, i.e. in < >
@@ -1753,7 +1753,7 @@ extern __gshared EEcontext eecontext;
17531753
17541754
17551755// Different goals for el_optimize()
1756- alias uint goal_t;
1756+ alias goal_t = uint ;
17571757enum
17581758{
17591759 GOALnone = 0 , // evaluate for side effects only
0 commit comments