TODO comment

This commit is contained in:
Mrna
2025-10-21 07:51:46 +02:00
parent 3c2b636ea8
commit d1cb6dbac7

View File

@@ -231,5 +231,6 @@ private:
// Also it might be useful to have T -> location lookup
// Note: hash of std::shared_ptr<T> 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<std::shared_ptr<T>, coord_type> m_ReverseGridLookup;
};