From 1a448c66edf26ceb4fc4f0daad7375f0ae5f84cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 19 Jun 2020 14:31:04 +0200 Subject: Cleanup: Alembic, move the C++ code to `blender::io::alembic` namespace This commit only moves code into the `blender::io::alembic` namespace, it does not move `static` functions into an anonymous namespace. No functional changes. --- tests/gtests/alembic/abc_export_test.cc | 2 ++ tests/gtests/alembic/abc_matrix_test.cc | 2 ++ 2 files changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/gtests/alembic/abc_export_test.cc b/tests/gtests/alembic/abc_export_test.cc index e7e8eb6f84f..2926809a1af 100644 --- a/tests/gtests/alembic/abc_export_test.cc +++ b/tests/gtests/alembic/abc_export_test.cc @@ -13,6 +13,8 @@ extern "C" { #include "DEG_depsgraph.h" +using namespace blender::io::alembic; + class TestableAbcExporter : public AbcExporter { public: TestableAbcExporter(Main *bmain, const char *filename, ExportSettings &settings) diff --git a/tests/gtests/alembic/abc_matrix_test.cc b/tests/gtests/alembic/abc_matrix_test.cc index 9b16eb108be..60dfd4e30cf 100644 --- a/tests/gtests/alembic/abc_matrix_test.cc +++ b/tests/gtests/alembic/abc_matrix_test.cc @@ -8,6 +8,8 @@ extern "C" { #include "BLI_utildefines.h" } +using namespace blender::io::alembic; + TEST(abc_matrix, CreateRotationMatrixY_YfromZ) { // Input variables -- cgit v1.2.3