diff --git a/VersionedMap.cpp b/VersionedMap.cpp index a705348..f800dba 100644 --- a/VersionedMap.cpp +++ b/VersionedMap.cpp @@ -499,16 +499,6 @@ struct __attribute__((__visibility__("hidden"))) VersionedMap::Impl { return result; } - template - uint32_t left(uint32_t node, bool which, int64_t at) { - return child(node, false, at); - } - - template - uint32_t right(uint32_t node, bool which, int64_t at) { - return child(node, true, at); - } - // Returns the node that results from setting `which` to `child` on `node` uint32_t update(uint32_t node, bool which, uint32_t child, int64_t version) { assert(node == 0 || node >= kMinAddressable);