diff options
author | Zahary Karadjov <zahary@gmail.com> | 2014-03-15 11:23:46 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2014-03-16 20:42:06 +0200 |
commit | cf8fe16a48d79d149f6ce85e229d23c1513c2497 (patch) | |
tree | fa231d9755120954f4f9b66b7e32528e98f3b1cc /compiler/semdata.nim | |
parent | 7080d02af47cdc459aa441baa76d06f32af2f1c3 (diff) | |
download | Nim-cf8fe16a48d79d149f6ce85e229d23c1513c2497.tar.gz |
fix #715 again
the regression was caused by the introduction of "generic" lambdas
Diffstat (limited to 'compiler/semdata.nim')
-rw-r--r-- | compiler/semdata.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semdata.nim b/compiler/semdata.nim index 84e017050..088b93fae 100644 --- a/compiler/semdata.nim +++ b/compiler/semdata.nim @@ -42,7 +42,7 @@ type TExprFlag* = enum efLValue, efWantIterator, efInTypeof, efWantStmt, efDetermineType, - efAllowDestructor, efWantValue + efAllowDestructor, efWantValue, efOperand TExprFlags* = set[TExprFlag] PContext* = ref TContext |