summaryrefslogtreecommitdiff
path: root/src/xpath.h
diff options
context:
space:
mode:
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++;