diff dwtx/core/runtime/Path.d @ 43:ea8ff534f622

Fix override and super aliases
author Frank Benoit <benoit@tionex.de>
date Fri, 11 Apr 2008 01:24:25 +0200
parents 6518c18a01f7
children 46a6e0e6ccd4
line wrap: on
line diff
--- a/dwtx/core/runtime/Path.d	Thu Apr 10 19:10:12 2008 +0200
+++ b/dwtx/core/runtime/Path.d	Fri Apr 11 01:24:25 2008 +0200
@@ -574,7 +574,7 @@
     /* (Intentionally not included in javadoc)
      * Computes the hash code for this object.
      */
-    public int hashCode() {
+    public override hash_t toHash() {
         return separators & HASH_MASK;
     }
 
@@ -956,7 +956,7 @@
     /* (Intentionally not included in javadoc)
      * @see IPath#toString()
      */
-    public String toString() {
+    public override String toString() {
         int resultSize = computeLength();
         if (resultSize <= 0)
             return EMPTY_STRING;