mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
Refactor Serializer, SerialIter, SHAMapItem, NodeObject:
* Make LessThan private * Make NodeObject::isSame private * Remove hotTRANSACTION * Remove some Serializer members * Remove unused SHAMapItem::getRaw * Remove unused STLedgerEntry::getOwners * Remove Serializer constructors * Remove unused Serializer members * Remove SerialIter ctor
This commit is contained in:
@@ -48,7 +48,7 @@ public:
|
||||
}
|
||||
|
||||
Status
|
||||
fetch (void const*, NodeObject::Ptr*)
|
||||
fetch (void const*, std::shared_ptr<NodeObject>*)
|
||||
{
|
||||
return notFound;
|
||||
}
|
||||
@@ -67,7 +67,7 @@ public:
|
||||
}
|
||||
|
||||
void
|
||||
store (NodeObject::ref object)
|
||||
store (std::shared_ptr<NodeObject> const& object)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -77,7 +77,7 @@ public:
|
||||
}
|
||||
|
||||
void
|
||||
for_each (std::function <void(NodeObject::Ptr)> f)
|
||||
for_each (std::function <void(std::shared_ptr<NodeObject>)> f)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user