summaryrefslogtreecommitdiff
path: root/src/xpath.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-30 08:24:37 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:34 -0400
commit3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba (patch)
treedc04c7feaeab4ce255f4f74d47325f4efb9f8314 /src/xpath.h
parent83fc097062c3380091556c6a4b703d28821d5464 (diff)
downloadledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.tar.gz
ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.tar.bz2
ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.zip
Changed some of the logging macro names.
Diffstat (limited to 'src/xpath.h')
-rw-r--r--src/xpath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xpath.h b/src/xpath.h
index 13966ffc..7056c74e 100644
--- a/src/xpath.h
+++ b/src/xpath.h
@@ -424,21 +424,21 @@ public:
}
void release() const {
- DEBUG_("ledger.xpath.memory",
+ DEBUG("ledger.xpath.memory",
"Releasing " << this << ", refc now " << refc - 1);
assert(refc > 0);
if (--refc == 0)
delete this;
}
op_t * acquire() {
- DEBUG_("ledger.xpath.memory",
+ DEBUG("ledger.xpath.memory",
"Acquiring " << this << ", refc now " << refc + 1);
assert(refc >= 0);
refc++;
return this;
}
const op_t * acquire() const {
- DEBUG_("ledger.xpath.memory",
+ DEBUG("ledger.xpath.memory",
"Acquiring " << this << ", refc now " << refc + 1);
assert(refc >= 0);
refc++;