Tidy up hardened containers (RIPD-380):

* Rename hardened containers for clarity
* Fixes https://ripplelabs.atlassian.net/browse/RIPD-380
This commit is contained in:
Howard Hinnant
2014-07-28 09:01:32 -07:00
committed by Vinnie Falco
parent e6f4eedb1e
commit 58547f6997
64 changed files with 179 additions and 170 deletions

View File

@@ -29,9 +29,9 @@ namespace ripple {
{
protected:
typedef ripple::unordered_map<uint256, AmendmentState> amendmentMap_t;
typedef hash_map<uint256, AmendmentState> amendmentMap_t;
typedef std::pair<const uint256, AmendmentState> amendmentIt_t;
typedef ripple::unordered_set<uint256> amendmentList_t;
typedef hash_set<uint256> amendmentList_t;
typedef RippleMutex LockType;
typedef std::lock_guard <LockType> ScopedLockType;