diff --git a/headers/Containers/DualkeyMap.hpp b/headers/Containers/DualkeyMap.hpp index b055a0a..9bfc0d3 100644 --- a/headers/Containers/DualkeyMap.hpp +++ b/headers/Containers/DualkeyMap.hpp @@ -302,6 +302,11 @@ private: queryResults.reserve(512); for (DualkeyHash *hash : hashList) { + // Tombstone + if (hash == nullptr) { + continue; + } + // The hell of doing 2 conditions with similar logics in // the same logical block if constexpr (searchingInFirstKey) {