# HG changeset patch # User daveb # Date 1276591824 -34200 # Node ID d0604b062db8aab8e9c0546c1b9ce733f56860dd # Parent 3c1b0c4d584706a50aff0f5691171a994794f971 Get rid of warnings in builder diff -r 3c1b0c4d5847 -r d0604b062db8 builder.d --- a/builder.d Tue Jun 15 17:57:42 2010 +0930 +++ b/builder.d Tue Jun 15 18:20:24 2010 +0930 @@ -308,7 +308,7 @@ } } - string toString() { + override string toString() { return mKind ~ "-item-" ~ mPath; } } diff -r 3c1b0c4d5847 -r d0604b062db8 configure.d --- a/configure.d Tue Jun 15 17:57:42 2010 +0930 +++ b/configure.d Tue Jun 15 18:20:24 2010 +0930 @@ -63,7 +63,7 @@ // compile builder into bin_path writefln("Building the builder"); - int ret = system(format("dmd %s -O -of%s", + int ret = system(format("dmd -w -wi %s -O -of%s", source_path.join("builder.d"), bin_path.join("builder"))); if (ret) { writefln("Error - builder failed to compile");