From 8f8ea62ed56fa383df2e3824193ff5674277b341 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 23 May 2024 21:15:12 -0700 Subject: [PATCH] Remove dead code --- VersionedMap.cpp | 10 ---------- 1 file changed, 10 deletions(-) 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);