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:
authorJacques Lucke <jacques@blender.org>2021-08-31 14:22:05 +0300
committerJacques Lucke <jacques@blender.org>2021-08-31 14:22:05 +0300
commita275572e0b9d6c96b10bfac33a31310c7231d5eb (patch)
treee39d2d92bb123530134ea8575fdf47296ec7380a /source/blender/functions
parent9ec7e23c44791e4d20b7ec40d228fdd4b028d702 (diff)
fix string socket
Diffstat (limited to 'source/blender/functions')
-rw-r--r--source/blender/functions/intern/cpp_types.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/functions/intern/cpp_types.cc b/source/blender/functions/intern/cpp_types.cc
index 92ebfd5edf2..058fb76af2b 100644
--- a/source/blender/functions/intern/cpp_types.cc
+++ b/source/blender/functions/intern/cpp_types.cc
@@ -46,5 +46,6 @@ MAKE_FIELD_CPP_TYPE(Float3Field, float3);
MAKE_FIELD_CPP_TYPE(ColorGeometry4fField, blender::ColorGeometry4f);
MAKE_FIELD_CPP_TYPE(BoolField, bool);
MAKE_FIELD_CPP_TYPE(Int32Field, int32_t);
+MAKE_FIELD_CPP_TYPE(StringField, std::string);
} // namespace blender::fn