Cleanup: remove C++ RawArray

Unused, and conflict with rna `RawArray`.

Pull Request: https://projects.blender.org/blender/blender/pulls/111491
This commit is contained in:
Iliya Katueshenock
2023-08-25 11:46:37 +02:00
committed by Jacques Lucke
parent b150b47720
commit 888a7f0bf0
-7
View File
@@ -433,11 +433,4 @@ class Array {
}
};
/**
* Same as a normal Array, but does not use Blender's guarded allocator. This is useful when
* allocating memory with static storage duration.
*/
template<typename T, int64_t InlineBufferCapacity = default_inline_buffer_capacity(sizeof(T))>
using RawArray = Array<T, InlineBufferCapacity, RawAllocator>;
} // namespace blender