Browse Source

Documented another difference with std::vector

Jorrit Rouwe 1 year ago
parent
commit
2e676509fc
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Jolt/Core/Array.h

+ 1 - 0
Jolt/Core/Array.h

@@ -29,6 +29,7 @@ JPH_NAMESPACE_BEGIN
 /// - Memory is not initialized to zero (this was causing a lot of page faults when deserializing large MeshShapes / HeightFieldShapes)
 /// - Iterators are simple pointers (for now)
 /// - No exception safety
+/// - No specialization like std::vector<bool> has
 /// - Not all functions have been implemented
 template <class T, class Allocator = STLAllocator<T>>
 class [[nodiscard]] Array : private Allocator