diff dmd/SharedStaticDtorDeclaration.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents b0d41ff5e0df
children
line wrap: on
line diff
--- a/dmd/SharedStaticDtorDeclaration.d	Sun Mar 25 03:11:12 2012 +0400
+++ b/dmd/SharedStaticDtorDeclaration.d	Sat Mar 02 01:25:52 2013 -0800
@@ -18,14 +18,14 @@
 	    super(loc, endloc, "_sharedStaticDtor");
 	}
 	
-    Dsymbol syntaxCopy(Dsymbol s)
+    override Dsymbol syntaxCopy(Dsymbol s)
 	{
 		assert(!s);
 		SharedStaticDtorDeclaration sdd = new SharedStaticDtorDeclaration(loc, endloc);
 		return FuncDeclaration.syntaxCopy(sdd);
 	}
 	
-    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
+    override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
 	{
 	    if (!hgs.hdrgen)
 		{
@@ -34,5 +34,5 @@
 		}
 	}
 
-    SharedStaticDtorDeclaration isSharedStaticDtorDeclaration() { return this; }
+    override SharedStaticDtorDeclaration isSharedStaticDtorDeclaration() { return this; }
 }
\ No newline at end of file