summaryrefslogtreecommitdiff
path: root/src/token.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-28 18:39:17 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-28 18:39:17 -0400
commit9408f3cbae5027734fe9b22ba3855e209d192eb1 (patch)
treeefacc9d996fd850e24e798044ded6393b9d8ba0c /src/token.h
parentc26daee2cf05329e1d7ea6db4aad34210303a272 (diff)
downloadfork-ledger-9408f3cbae5027734fe9b22ba3855e209d192eb1.tar.gz
fork-ledger-9408f3cbae5027734fe9b22ba3855e209d192eb1.tar.bz2
fork-ledger-9408f3cbae5027734fe9b22ba3855e209d192eb1.zip
Changed some debug text
Diffstat (limited to 'src/token.h')
-rw-r--r--src/token.h4
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) {