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/FN_multi_function_signature.hh')
-rw-r--r--source/blender/functions/FN_multi_function_signature.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/functions/FN_multi_function_signature.hh b/source/blender/functions/FN_multi_function_signature.hh
index 4ccceb39503..af5f61fe2ee 100644
--- a/source/blender/functions/FN_multi_function_signature.hh
+++ b/source/blender/functions/FN_multi_function_signature.hh
@@ -33,9 +33,9 @@ namespace blender::fn {
struct MFSignature {
std::string function_name;
/* Use RawAllocator so that a MultiFunction can have static storage duration. */
- Vector<std::string, 4, RawAllocator> param_names;
- Vector<MFParamType, 4, RawAllocator> param_types;
- Vector<int, 4, RawAllocator> param_data_indices;
+ RawVector<std::string> param_names;
+ RawVector<MFParamType> param_types;
+ RawVector<int> param_data_indices;
int data_index(int param_index) const
{