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 'source/blender/functions/intern/cpp_types.cc')
-rw-r--r--source/blender/functions/intern/cpp_types.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/functions/intern/cpp_types.cc b/source/blender/functions/intern/cpp_types.cc
index 3435c9c6eca..6e548d65192 100644
--- a/source/blender/functions/intern/cpp_types.cc
+++ b/source/blender/functions/intern/cpp_types.cc
@@ -26,15 +26,15 @@ namespace FN {
MAKE_CPP_TYPE(bool, bool)
MAKE_CPP_TYPE(float, float)
-MAKE_CPP_TYPE(float3, BLI::float3)
-MAKE_CPP_TYPE(float4x4, BLI::float4x4)
+MAKE_CPP_TYPE(float3, blender::float3)
+MAKE_CPP_TYPE(float4x4, blender::float4x4)
MAKE_CPP_TYPE(int32, int32_t)
MAKE_CPP_TYPE(uint32, uint32_t)
MAKE_CPP_TYPE(uint8, uint8_t)
-MAKE_CPP_TYPE(Color4f, BLI::Color4f)
-MAKE_CPP_TYPE(Color4b, BLI::Color4b)
+MAKE_CPP_TYPE(Color4f, blender::Color4f)
+MAKE_CPP_TYPE(Color4b, blender::Color4b)
MAKE_CPP_TYPE(string, std::string)