From feab6c39b3d858fe46b30e25e0226dd08efbd399 Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Thu, 19 Jun 2014 18:21:28 -0400 Subject: [PATCH] New types Account, Currency, Directory: * New tagged uint types. * Extract to_string functions from header to hide dependencies. * Include what you use and C++11 for cleanups. --- src/ripple/module/app/ledger/LedgerEntrySet.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ripple/module/app/ledger/LedgerEntrySet.h b/src/ripple/module/app/ledger/LedgerEntrySet.h index 919d6d8f4..5b0384f4f 100644 --- a/src/ripple/module/app/ledger/LedgerEntrySet.h +++ b/src/ripple/module/app/ledger/LedgerEntrySet.h @@ -166,12 +166,12 @@ public: std::function fDescriber); TER dirDelete ( - const bool bKeepRoot, - const std::uint64_t& uNodeDir, // Node item is mentioned in. - uint256 const& uRootIndex, - uint256 const& uLedgerIndex, // Item being deleted - const bool bStable, - const bool bSoft); + const bool bKeepRoot, + const std::uint64_t& uNodeDir, // Node item is mentioned in. + uint256 const& uRootIndex, + uint256 const& uLedgerIndex, // Item being deleted + const bool bStable, + const bool bSoft); bool dirFirst (uint256 const& uRootIndex, SLE::pointer& sleNode, unsigned int & uDirEntry, uint256 & uEntryIndex);