diff options
author | Araq <rumpf_a@web.de> | 2014-03-22 22:59:23 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-03-22 22:59:23 +0100 |
commit | b76d2eac7f551cafa0ac797330e3bd0650ab26d9 (patch) | |
tree | 2b8496ee88de8853c9ff4672c0deae1dce974c56 /compiler/c2nim | |
parent | 5f64d7a35389a5f4cac82a44a3f5f9414c2c3fbb (diff) | |
download | Nim-b76d2eac7f551cafa0ac797330e3bd0650ab26d9.tar.gz |
fixes #1006
Diffstat (limited to 'compiler/c2nim')
-rw-r--r-- | compiler/c2nim/cparse.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/c2nim/cparse.nim b/compiler/c2nim/cparse.nim index 86533fe26..52d50ca39 100644 --- a/compiler/c2nim/cparse.nim +++ b/compiler/c2nim/cparse.nim @@ -1279,7 +1279,8 @@ proc leftBindingPower(p : var TParser, tok : ref TToken) : int = of pxComma: return 10 # throw == 20 - of pxAsgn, pxPlusAsgn, pxMinusAsgn, pxStarAsgn, pxSlashAsgn, pxModAsgn, pxShlAsgn, pxShrAsgn, pxAmpAsgn, pxHatAsgn, pxBarAsgn: + of pxAsgn, pxPlusAsgn, pxMinusAsgn, pxStarAsgn, pxSlashAsgn, pxModAsgn, + pxShlAsgn, pxShrAsgn, pxAmpAsgn, pxHatAsgn, pxBarAsgn: return 30 of pxConditional: return 40 |