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/multi_function_procedure.cc')
-rw-r--r--source/blender/functions/intern/multi_function_procedure.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/functions/intern/multi_function_procedure.cc b/source/blender/functions/intern/multi_function_procedure.cc
index 7d96491f5e0..6eff7bc09f8 100644
--- a/source/blender/functions/intern/multi_function_procedure.cc
+++ b/source/blender/functions/intern/multi_function_procedure.cc
@@ -186,20 +186,6 @@ void MFProcedure::set_entry(MFInstruction &entry)
entry_ = &entry;
}
-void MFProcedure::assert_valid() const
-{
- /**
- * - Non parameter variables are destructed.
- * - At every instruction, every variable is either initialized or uninitialized.
- * - Input and mutable parameters of call instructions are initialized.
- * - Condition of branch instruction is initialized.
- * - Output parameters of call instructions are not initialized.
- * - Input parameters are never destructed.
- * - Mutable and output parameteres are initialized on every exit.
- * - No aliasing issues in call instructions (can happen when variable is used more than once).
- */
-}
-
MFProcedure::~MFProcedure()
{
for (MFCallInstruction *instruction : call_instructions_) {