# HG changeset patch # User Jari-Matti M?kel? # Date 1197490640 -7200 # Node ID baa7c4c0be7873290f7c22aa753a8fea1eee3d00 # Parent 943ecc9c133a5fadb17a5d04589844a53e54d53c Fixed formatting string bug, thanks Deewiant. diff -r 943ecc9c133a -r baa7c4c0be78 trunk/src/dil/Parser.d --- a/trunk/src/dil/Parser.d Wed Dec 12 03:25:07 2007 +0100 +++ b/trunk/src/dil/Parser.d Wed Dec 12 22:17:20 2007 +0200 @@ -4440,7 +4440,7 @@ static: auto ExpectedIdAfterTypeDot = "expected identifier after '(Type).', not '{}'"; auto ExpectedModuleIdentifier = "expected module identifier, not '{}'"; - auto IllegalDeclaration = "illegal Declaration found: {}"; + auto IllegalDeclaration = "illegal Declaration found: "; auto ExpectedFunctionName = "expected function name, not '{}'"; auto ExpectedVariableName = "expected variable name, not '{}'"; auto ExpectedFunctionBody = "expected function body, not '{}'";