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-06-11 14:39:38 +0300
committerJacques Lucke <jacques@blender.org>2021-06-11 14:39:38 +0300
commitf3ca987bce101f0b9be64d1832ec28dc0937464e (patch)
tree0b5e7c7995bc1f5da354764c66aee1ad4e26158d /source/blender/functions/FN_multi_function_procedure.hh
parent2245add9f87bd72fe2199690b8d8d91f6246d8cd (diff)
start constructing procedure from node tree
Diffstat (limited to 'source/blender/functions/FN_multi_function_procedure.hh')
-rw-r--r--source/blender/functions/FN_multi_function_procedure.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/functions/FN_multi_function_procedure.hh b/source/blender/functions/FN_multi_function_procedure.hh
index fca91b97be7..7e519437534 100644
--- a/source/blender/functions/FN_multi_function_procedure.hh
+++ b/source/blender/functions/FN_multi_function_procedure.hh
@@ -168,12 +168,12 @@ class MFProcedure : NonCopyable, NonMovable {
};
namespace multi_function_procedure_types {
-class MFVariable;
-class MFInstruction;
-class MFCallInstruction;
-class MFBranchInstruction;
-class MFDestructInstruction;
-class MFProcedure;
+using MFVariable = fn::MFVariable;
+using MFInstruction = fn::MFInstruction;
+using MFCallInstruction = fn::MFCallInstruction;
+using MFBranchInstruction = fn::MFBranchInstruction;
+using MFDestructInstruction = fn::MFDestructInstruction;
+using MFProcedure = fn::MFProcedure;
} // namespace multi_function_procedure_types
/* --------------------------------------------------------------------