diff --git a/cpp/src/positional_container.hpp b/cpp/src/positional_container.hpp index e131d2d..e8fd57e 100644 --- a/cpp/src/positional_container.hpp +++ b/cpp/src/positional_container.hpp @@ -231,5 +231,6 @@ private: // Also it might be useful to have T -> location lookup // Note: hash of std::shared_ptr may give us trouble if we free the memory and new one points // to the same location, maybe it would be better to hash the object itself? + // TODO how about using counting bloom filter for this? std::unordered_map, coord_type> m_ReverseGridLookup; };