diff options
-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(); |