diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-28 23:46:14 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-28 23:46:14 -0400 |
commit | 2b3f3e9867431174f5b5b25e47098a7218213a82 (patch) | |
tree | a27560ebcfad59813cd5e988ffae933c1d04cec3 /src/token.h | |
parent | 375f6c257d23ac7655ce0738a72acceb78119457 (diff) | |
parent | 52433e56e562976887325ce48a6271abb82a89aa (diff) | |
download | fork-ledger-2b3f3e9867431174f5b5b25e47098a7218213a82.tar.gz fork-ledger-2b3f3e9867431174f5b5b25e47098a7218213a82.tar.bz2 fork-ledger-2b3f3e9867431174f5b5b25e47098a7218213a82.zip |
Merge branch 'next'
Diffstat (limited to 'src/token.h')
-rw-r--r-- | src/token.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/token.h b/src/token.h index a9b75dd4..50d2bf72 100644 --- a/src/token.h +++ b/src/token.h @@ -108,10 +108,10 @@ struct expr_t::token_t : public noncopyable std::size_t length; explicit token_t() : kind(UNKNOWN), length(0) { - TRACE_CTOR(token_t, ""); + TRACE_CTOR(expr_t::token_t, ""); } ~token_t() throw() { - TRACE_DTOR(token_t); + TRACE_DTOR(expr_t::token_t); } token_t& operator=(const token_t& other) { |