refactor(containers): remove the container's final qualifier allows it to be inherited

This commit is contained in:
2024-11-02 20:49:48 +08:00
parent 475b9e1958
commit 243076cfec
8 changed files with 8 additions and 8 deletions

View File

@ -18,7 +18,7 @@ NAMESPACE_MODULE_BEGIN(Utility)
/** Dynamic array. The elements are stored contiguously, which means that elements can be accessed not only through iterators, but also using offsets to regular pointers to elements. */
template <CAllocatableObject T, CAllocator<T> Allocator = FHeapAllocator>
class TArray final
class TArray
{
private: