diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-02 16:36:44 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-02 16:36:44 -0400 |
commit | 673f7f7173072db52a937b60934f0a8391c7cb4b (patch) | |
tree | 054c77e79c5ae8a45135f330333183ed1d733e75 /src/op.h | |
parent | 101dea67bb4d900d20aff9f6a2a46a1a5d11e00a (diff) | |
download | fork-ledger-673f7f7173072db52a937b60934f0a8391c7cb4b.tar.gz fork-ledger-673f7f7173072db52a937b60934f0a8391c7cb4b.tar.bz2 fork-ledger-673f7f7173072db52a937b60934f0a8391c7cb4b.zip |
Fixed bad parameter name.
Diffstat (limited to 'src/op.h')
-rw-r--r-- | src/op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -332,7 +332,7 @@ inline expr_t::ptr_op_t expr_t::op_t::wrap_functor(const function_t& fobj) { #define MAKE_FUNCTOR(x) expr_t::op_t::wrap_functor(bind(&x, this, _1)) #define WRAP_FUNCTOR(x) expr_t::op_t::wrap_functor(x) -string op_context(const expr_t::ptr_op_t op, const expr_t::ptr_op_t op); +string op_context(const expr_t::ptr_op_t op, const expr_t::ptr_op_t goal); } // namespace ledger |