Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/blenlib/BLI_array_test.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/gtests/blenlib/BLI_array_test.cc b/tests/gtests/blenlib/BLI_array_test.cc
index b65402cd1fd..9c77c69e296 100644
--- a/tests/gtests/blenlib/BLI_array_test.cc
+++ b/tests/gtests/blenlib/BLI_array_test.cc
@@ -138,22 +138,23 @@ TEST(array, NoInitializationSizeConstructor)
{
using MyArray = Array<ConstructibleType>;
- TypedBuffer<MyArray> buffer;
- memset(buffer, 100, sizeof(MyArray));
+ AlignedBuffer<sizeof(MyArray), alignof(MyArray)> buffer;
+ char *buffer_ptr = (char *)buffer.ptr();
+ memset(buffer_ptr, 100, sizeof(MyArray));
/* Doing this to avoid some compiler optimization. */
for (uint i : IndexRange(sizeof(MyArray))) {
- EXPECT_EQ(((char *)buffer.ptr())[i], 100);
+ EXPECT_EQ(buffer_ptr[i], 100);
}
{
- MyArray &array = *new (buffer) MyArray(1, NoInitialization());
+ MyArray &array = *new (buffer.ptr()) MyArray(1, NoInitialization());
EXPECT_EQ(array[0].value, 100);
array.clear_without_destruct();
array.~Array();
}
{
- MyArray &array = *new (buffer) MyArray(1);
+ MyArray &array = *new (buffer.ptr()) MyArray(1);
EXPECT_EQ(array[0].value, 42);
array.~Array();
}