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/FN_cpp_types.hh
parentf8696742bb2a727886ab3c492eb0a8c7afba53bb (diff)
Functions: Wrap into blender namespace
Similar to previous commit, aims to resolve compilation on devtoolset-6.
Diffstat (limited to 'source/blender/functions/FN_cpp_types.hh')
-rw-r--r--source/blender/functions/FN_cpp_types.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/functions/FN_cpp_types.hh b/source/blender/functions/FN_cpp_types.hh
index eceb43beb9d..6ee8788cd52 100644
--- a/source/blender/functions/FN_cpp_types.hh
+++ b/source/blender/functions/FN_cpp_types.hh
@@ -26,6 +26,7 @@
#include "FN_cpp_type.hh"
+namespace blender {
namespace FN {
extern const CPPType &CPPType_bool;
@@ -44,5 +45,6 @@ extern const CPPType &CPPType_Color4b;
extern const CPPType &CPPType_string;
} // namespace FN
+} // namespace blender
#endif /* __FN_CPP_TYPES_HH__ */