summaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-22 18:53:44 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-22 18:53:44 -0400
commite95e8c3f792c8801f5e0c31a3a2234a0ccc553e9 (patch)
treed2acb79ef5cda3f9672f7ad9bb14af53c0549e6d /src/value.h
parent965df4a404f7c47b2cb5a61411538d8849a76508 (diff)
downloadfork-ledger-e95e8c3f792c8801f5e0c31a3a2234a0ccc553e9.tar.gz
fork-ledger-e95e8c3f792c8801f5e0c31a3a2234a0ccc553e9.tar.bz2
fork-ledger-e95e8c3f792c8801f5e0c31a3a2234a0ccc553e9.zip
Corrected a parse-time optimization of "! CONSTANT".
Diffstat (limited to 'src/value.h')
-rw-r--r--src/value.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/value.h b/src/value.h
index 0afd6404..5c55a117 100644
--- a/src/value.h
+++ b/src/value.h
@@ -400,6 +400,7 @@ public:
return temp;
}
void in_place_negate(); // exists for efficiency's sake
+ void in_place_not(); // exists for efficiency's sake
value_t operator-() const {
return negate();