diff dmd/OverloadSet.d @ 72:2e2a5c3f943a

reduced warnings by adding override to the methods think this also normalizes different line endings used all over the place
author Trass3r
date Sat, 28 Aug 2010 16:19:48 +0200
parents cab4c37afb89
children 7e0d548de9e6
line wrap: on
line diff
--- a/dmd/OverloadSet.d	Sat Aug 28 16:14:07 2010 +0200
+++ b/dmd/OverloadSet.d	Sat Aug 28 16:19:48 2010 +0200
@@ -17,10 +17,10 @@
 		a.push(cast(void*)s);
 	}
 	
-    OverloadSet isOverloadSet() { return this; }
+    override OverloadSet isOverloadSet() { return this; }
 
-    string kind()
+    override string kind()
 	{
 		return "overloadset";
 	}
-}
\ No newline at end of file
+}