diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-23 01:09:31 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-23 01:09:31 -0400 |
commit | 00fdadedcc9ebfacdc2c4d99ffd8e2d0bbe7acfb (patch) | |
tree | 7e0d6cd1001ba2a26601d5c0cdf1b9280ab6e853 /src/op.cc | |
parent | 5ba81765eabcb0fe0b7a865b7a2c9c6affab4a59 (diff) | |
download | fork-ledger-00fdadedcc9ebfacdc2c4d99ffd8e2d0bbe7acfb.tar.gz fork-ledger-00fdadedcc9ebfacdc2c4d99ffd8e2d0bbe7acfb.tar.bz2 fork-ledger-00fdadedcc9ebfacdc2c4d99ffd8e2d0bbe7acfb.zip |
Removed extraneous parentheses.
Diffstat (limited to 'src/op.cc')
-rw-r--r-- | src/op.cc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -229,10 +229,9 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const string symbol; switch (kind) { - case VALUE: { + case VALUE: as_value().print(out, context.relaxed); break; - } case IDENT: out << as_ident(); |