diff --git a/src/bounce/collision/shapes/qhull.cpp b/src/bounce/collision/shapes/qhull.cpp index 585508b..713dd74 100644 --- a/src/bounce/collision/shapes/qhull.cpp +++ b/src/bounce/collision/shapes/qhull.cpp @@ -53,20 +53,6 @@ struct b3UniqueArray u32 count; }; -// -template -static inline u32 b3Find(const T* values, u32 count, const T* value) -{ - for (u32 i = 0; i < count; ++i) - { - if (values[i] == value) - { - return i; - } - } - B3_ASSERT(false); -} - // static b3Vec3 b3ComputeCentroid(b3QHull* hull) {