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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-02-01 13:01:12 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-01 17:40:19 +0300
commita1aa908a31789209752e9ca5a4869057a28ad94d (patch)
tree1c8680aee139a892f056ee4c80df681f383ddaf1
parent039792caf35fa3ff57a3712ece28aa1336281766 (diff)
Depsgraph: Remove placeholder operation
-rw-r--r--source/blender/depsgraph/intern/node/deg_node_operation.cc1
-rw-r--r--source/blender/depsgraph/intern/node/deg_node_operation.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.cc b/source/blender/depsgraph/intern/node/deg_node_operation.cc
index 325ced54507..a7b06af3c08 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.cc
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.cc
@@ -44,7 +44,6 @@ const char *operationCodeAsString(OperationCode opcode)
case OperationCode::OPERATION: return "OPERATION";
case OperationCode::ID_PROPERTY: return "ID_PROPERTY";
case OperationCode::PARAMETERS_EVAL: return "PARAMETERS_EVAL";
- case OperationCode::PLACEHOLDER: return "PLACEHOLDER";
/* Animation, Drivers, etc. */
case OperationCode::ANIMATION: return "ANIMATION";
case OperationCode::DRIVER: return "DRIVER";
diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.h b/source/blender/depsgraph/intern/node/deg_node_operation.h
index f010a40b048..4db4b71b04f 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.h
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.h
@@ -51,9 +51,6 @@ enum class OperationCode {
ID_PROPERTY,
PARAMETERS_EVAL,
- // XXX: Placeholder while porting depsgraph code
- PLACEHOLDER,
-
/* Animation, Drivers, etc. --------------------------------------------- */
/* NLA + Action */
ANIMATION,