From 381fb0b394eb1c54ef3f238ed4c0d7978f1806ee Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 21 Oct 2025 14:03:10 +0200 Subject: Core/Vmaps: Replace G3D containers with std ones --- src/common/Collision/DynamicTree.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/common/Collision/DynamicTree.cpp') diff --git a/src/common/Collision/DynamicTree.cpp b/src/common/Collision/DynamicTree.cpp index 1f5875fac0a..073e317e4ae 100644 --- a/src/common/Collision/DynamicTree.cpp +++ b/src/common/Collision/DynamicTree.cpp @@ -35,10 +35,6 @@ int CHECK_TREE_PERIOD = 200; } // namespace -template<> struct HashTrait< GameObjectModel>{ - static size_t hashCode(GameObjectModel const& g) { return (size_t)(void*)&g; } -}; - template<> struct PositionTrait< GameObjectModel> { static void getPosition(GameObjectModel const& g, G3D::Vector3& p) { p = g.getPosition(); } }; -- cgit v1.2.3