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
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-06-30 17:46:46 +0300
committerJacques Lucke <jacques@blender.org>2020-06-30 17:46:52 +0300
commit26cdab02a8ca3517389468045ca84149dc20f850 (patch)
treefdfec2ecedb863bb902ffe1eab9e67b676f423c4 /tests/gtests/blenlib/BLI_array_test.cc
parente0ef574c400e3149a6f958c81f486e041da712a0 (diff)
Cleanup: move tests into their corresponding namespace
Diffstat (limited to 'tests/gtests/blenlib/BLI_array_test.cc')
-rw-r--r--tests/gtests/blenlib/BLI_array_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/gtests/blenlib/BLI_array_test.cc b/tests/gtests/blenlib/BLI_array_test.cc
index 08f61a19900..9c77c69e296 100644
--- a/tests/gtests/blenlib/BLI_array_test.cc
+++ b/tests/gtests/blenlib/BLI_array_test.cc
@@ -2,7 +2,7 @@
#include "BLI_strict_flags.h"
#include "testing/testing.h"
-using namespace blender;
+namespace blender {
TEST(array, DefaultConstructor)
{
@@ -159,3 +159,5 @@ TEST(array, NoInitializationSizeConstructor)
array.~Array();
}
}
+
+} // namespace blender