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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-06-12 16:39:16 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-06-12 16:39:16 +0300
commit9cc059755699f49e2bd7b4e722aecc00d535113d (patch)
treede248c8e08b7a56d3e63953f2a8a18fc01b472c0 /source/blender/functions/intern
parentf8696742bb2a727886ab3c492eb0a8c7afba53bb (diff)
Functions: Wrap into blender namespace
Similar to previous commit, aims to resolve compilation on devtoolset-6.
Diffstat (limited to 'source/blender/functions/intern')
-rw-r--r--source/blender/functions/intern/cpp_types.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/functions/intern/cpp_types.cc b/source/blender/functions/intern/cpp_types.cc
index 6e548d65192..6339250caa5 100644
--- a/source/blender/functions/intern/cpp_types.cc
+++ b/source/blender/functions/intern/cpp_types.cc
@@ -21,6 +21,7 @@
#include "BLI_float3.hh"
#include "BLI_float4x4.hh"
+namespace blender {
namespace FN {
MAKE_CPP_TYPE(bool, bool)
@@ -39,3 +40,4 @@ MAKE_CPP_TYPE(Color4b, blender::Color4b)
MAKE_CPP_TYPE(string, std::string)
} // namespace FN
+} // namespace blender