Remove some unneeded reference count bumps.

This commit is contained in:
JoelKatz
2012-07-26 16:38:42 -07:00
parent c5995e9e1e
commit ad77087ee5
2 changed files with 8 additions and 8 deletions

View File

@@ -49,10 +49,10 @@ public:
// basic entry functions
SLE::pointer getEntry(const uint256& index, LedgerEntryAction&);
LedgerEntryAction hasEntry(const uint256& index) const;
void entryCache(SLE::pointer); // Add this entry to the cache
void entryCreate(SLE::pointer); // This entry will be created
void entryDelete(SLE::pointer); // This entry will be deleted
void entryModify(SLE::pointer); // This entry will be modified
void entryCache(SLE::pointer&); // Add this entry to the cache
void entryCreate(SLE::pointer&); // This entry will be created
void entryDelete(SLE::pointer&); // This entry will be deleted
void entryModify(SLE::pointer&); // This entry will be modified
// iterator functions
bool isEmpty() const { return mEntries.empty(); }