diff dmd/Parameter.d @ 131:206db751bd4c

dmdfe 2.037 compiles now
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Fri, 10 Sep 2010 00:27:37 +0100
parents 60bb0fe4563e
children af1bebfd96a4
line wrap: on
line diff
--- a/dmd/Parameter.d	Thu Sep 09 22:51:44 2010 +0100
+++ b/dmd/Parameter.d	Fri Sep 10 00:27:37 2010 +0100
@@ -21,12 +21,12 @@
 class Parameter
 {
     //enum InOut inout;
-    STC storageClass;
+    StorageClass storageClass;
     Type type;
     Identifier ident;
     Expression defaultArg;
 
-    this(STC storageClass, Type type, Identifier ident, Expression defaultArg)
+    this(StorageClass storageClass, Type type, Identifier ident, Expression defaultArg)
 	{
 		this.type = type;
 		this.ident = ident;
@@ -190,7 +190,7 @@
 				else if (arg.storageClass & STCauto)
 					buf.writestring("auto ");
 
-				uint stc = arg.storageClass;
+				StorageClass stc = arg.storageClass;
 				if (arg.type && arg.type.mod & MODshared)
 					stc &= ~STCshared;