Try removing SHAMapNodeData constructor

This commit is contained in:
Bart
2026-05-12 08:30:50 -04:00
parent 35ffa71c0b
commit 6f7c6a79f5

View File

@@ -83,12 +83,6 @@ struct SHAMapNodeData
SHAMapNodeID nodeID;
Blob data;
bool isLeaf;
// TODO: This constructor can be removed once we have fully switched to C++20 or beyond.
SHAMapNodeData(SHAMapNodeID const& id, Blob d, bool leaf)
: nodeID(id), data(std::move(d)), isLeaf(leaf)
{
}
};
class SHAMap