diff options
-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) { |