diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-01 04:36:49 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:35 -0400 |
commit | e92bcf411d2e9a55969303ba3893a017152d7c18 (patch) | |
tree | e7b52d09751de39c86ede91f88a2fcf24facfb27 /src/xpath.h | |
parent | 50a9caf302936ba6f61bbe05b4718f199d0d584c (diff) | |
download | fork-ledger-e92bcf411d2e9a55969303ba3893a017152d7c18.tar.gz fork-ledger-e92bcf411d2e9a55969303ba3893a017152d7c18.tar.bz2 fork-ledger-e92bcf411d2e9a55969303ba3893a017152d7c18.zip |
Started using boost::optional<T>.
Diffstat (limited to 'src/xpath.h')
-rw-r--r-- | src/xpath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xpath.h b/src/xpath.h index 76625436..638ec482 100644 --- a/src/xpath.h +++ b/src/xpath.h @@ -428,7 +428,7 @@ public: "Releasing " << this << ", refc now " << refc - 1); assert(refc > 0); if (--refc == 0) - delete this; + checked_delete(this); } op_t * acquire() { DEBUG("ledger.xpath.memory", |