diff dmd/TypeEnum.d @ 79:43073c7c7769

updated to 2.035 also implemented a few missing functions still crashes in Import.importAll though
author Trass3r
date Mon, 30 Aug 2010 03:57:51 +0200
parents ef02e2e203c2
children df6d0f967680
line wrap: on
line diff
--- a/dmd/TypeEnum.d	Sun Aug 29 14:39:08 2010 +0100
+++ b/dmd/TypeEnum.d	Mon Aug 30 03:57:51 2010 +0200
@@ -137,27 +137,27 @@
 	    return sym.memtype.isfloating();
 	}
 	
-    bool isreal()
+    override bool isreal()
 	{
 		return sym.memtype.isreal();
 	}
 	
-    bool isimaginary()
+    override bool isimaginary()
 	{
 		return sym.memtype.isimaginary();
 	}
 	
-    bool iscomplex()
+    override bool iscomplex()
 	{
 		return sym.memtype.iscomplex();
 	}
 	
-    bool checkBoolean()
+    override bool checkBoolean()
 	{
 		return sym.memtype.checkBoolean();
 	}
 	
-    bool isAssignable()
+    override bool isAssignable()
 	{
 		return sym.memtype.isAssignable();
 	}