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:
Diffstat (limited to 'tests/gtests/blenlib/BLI_string_ref_test.cc')
-rw-r--r--tests/gtests/blenlib/BLI_string_ref_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gtests/blenlib/BLI_string_ref_test.cc b/tests/gtests/blenlib/BLI_string_ref_test.cc
index 5a2d2463375..1f84b8577b4 100644
--- a/tests/gtests/blenlib/BLI_string_ref_test.cc
+++ b/tests/gtests/blenlib/BLI_string_ref_test.cc
@@ -3,9 +3,7 @@
#include "BLI_vector.hh"
#include "testing/testing.h"
-using blender::StringRef;
-using blender::StringRefNull;
-using blender::Vector;
+namespace blender {
TEST(string_ref_null, DefaultConstructor)
{
@@ -273,3 +271,5 @@ TEST(string_ref, Copy)
EXPECT_EQ(dst[6], 0xFF);
EXPECT_EQ(ref, dst);
}
+
+} // namespace blender