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>2020-06-22 16:48:08 +0300
committerJacques Lucke <jacques@blender.org>2020-06-22 16:50:31 +0300
commit6223385043ddc93beaa8f092dfd31a2208b8e961 (patch)
treea4e208569308d293dc02101e09d3f84bff65af93 /source/blender/functions/FN_multi_function_data_type.hh
parent7117ed96917a2b2dedf663a97f10bde5d285470f (diff)
Functions: Various improvements to the spans and generic data structures
Most of this code is covered by unit tests.
Diffstat (limited to 'source/blender/functions/FN_multi_function_data_type.hh')
-rw-r--r--source/blender/functions/FN_multi_function_data_type.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/functions/FN_multi_function_data_type.hh b/source/blender/functions/FN_multi_function_data_type.hh
index 856d1cc7253..1a7b179c6ae 100644
--- a/source/blender/functions/FN_multi_function_data_type.hh
+++ b/source/blender/functions/FN_multi_function_data_type.hh
@@ -46,6 +46,8 @@ class MFDataType {
}
public:
+ MFDataType() = default;
+
static MFDataType ForSingle(const CPPType &type)
{
return MFDataType(Single, type);