diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-23 19:40:01 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-23 19:40:01 -0400 |
commit | 7409b050bee226fb7bb0b89a10d9c206d8797d70 (patch) | |
tree | 75c1e96e8b8dfc1bbfe0123eb6521b4b88d391fc /valexpr.h | |
parent | 90af21852458919a08420e86542a2ab2283cd4e9 (diff) | |
download | fork-ledger-7409b050bee226fb7bb0b89a10d9c206d8797d70.tar.gz fork-ledger-7409b050bee226fb7bb0b89a10d9c206d8797d70.tar.bz2 fork-ledger-7409b050bee226fb7bb0b89a10d9c206d8797d70.zip |
More fixes to restore parsing capability.
Diffstat (limited to 'valexpr.h')
-rw-r--r-- | valexpr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -794,7 +794,7 @@ public: } operator bool() const throw() { - return ptr != NULL; + return ptr.get() != NULL; } operator string() const throw() { return expr_str; |