diff options
Diffstat (limited to 'src/expr.h')
-rw-r--r-- | src/expr.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -70,6 +70,8 @@ class expr_t struct token_t; class parser_t; + friend string expr_context(const expr_t& expr); + public: class op_t; typedef intrusive_ptr<op_t> ptr_op_t; @@ -141,10 +143,7 @@ public: std::ostream& operator<<(std::ostream& out, const expr_t& expr); -inline string expr_context(const expr_t& expr) { - // jww (2009-02-01): NYI - return "EXPR"; -} +string expr_context(const expr_t& expr); } // namespace ledger |