diff options
author | Araq <rumpf_a@web.de> | 2012-01-29 01:55:56 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-01-29 01:55:56 +0100 |
commit | 1a2ccd6a23e1fbc4523b814ce4b444c721c6d57f (patch) | |
tree | 8b0e617ae0f490b374e6c23997e753b81e93bc7a | |
parent | 9083f01fd23fe7ea3470136ec2cd7a0d2a600b43 (diff) | |
download | Nim-1a2ccd6a23e1fbc4523b814ce4b444c721c6d57f.tar.gz |
fixes #93
-rwxr-xr-x | compiler/c2nim/cparse.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/c2nim/cparse.nim b/compiler/c2nim/cparse.nim index 01baa7ab7..67ab6cf26 100755 --- a/compiler/c2nim/cparse.nim +++ b/compiler/c2nim/cparse.nim @@ -94,7 +94,6 @@ proc OpenParser(p: var TParser, filename: string, new(p.tok) proc parMessage(p: TParser, msg: TMsgKind, arg = "") = - assert false lexMessage(p.lex, msg, arg) proc CloseParser(p: var TParser) = CloseLexer(p.lex) |