[Bf-blender-cvs] [b08bcb1ef43] functions-experimental-refactor: remove unused code

Jacques Lucke noreply at git.blender.org
Wed Oct 16 13:17:50 CEST 2019


Commit: b08bcb1ef43b2f71d699c7f031bdda0163b144e0
Author: Jacques Lucke
Date:   Wed Oct 16 12:37:30 2019 +0200
Branches: functions-experimental-refactor
https://developer.blender.org/rBb08bcb1ef43b2f71d699c7f031bdda0163b144e0

remove unused code

===================================================================

M	source/blender/blenkernel/BKE_multi_function.h

===================================================================

diff --git a/source/blender/blenkernel/BKE_multi_function.h b/source/blender/blenkernel/BKE_multi_function.h
index c15565f4620..08eb45c6ac0 100644
--- a/source/blender/blenkernel/BKE_multi_function.h
+++ b/source/blender/blenkernel/BKE_multi_function.h
@@ -20,8 +20,6 @@ struct ParamType {
     VectorInput,
     VectorOutput,
     MutableVector,
-    ExternalDataCache,
-    Context,
   };
 
   ParamType(Category category, const CPPType *base_type = nullptr)
@@ -58,8 +56,6 @@ struct DataType {
     None,
     Single,
     Vector,
-    ExternalDataCache,
-    Context,
   };
 
   DataType(Category category, const CPPType &type) : m_category(category), m_base_type(&type)
@@ -110,8 +106,6 @@ class MultiFunction {
         uint corrected_index = 0;
         switch (param_type.category()) {
           case ParamType::None:
-          case ParamType::Context:
-          case ParamType::ExternalDataCache:
             BLI_assert(false);
             break;
           case ParamType::SingleInput:



More information about the Bf-blender-cvs mailing list