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>2017-12-21 13:58:48 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-21 13:58:48 +0300
commit6e476800779ac04154d84964d52f533c9da85a6a (patch)
treeeeb13a9362cf1f47218266448d47dacc1b812fc8 /source/blender/depsgraph
parent681a1028004342c739f056c51443516b9b49b38a (diff)
Depsgraph: Remove confusing declaration of node method
it is only to be implemented for operation node.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/nodes/deg_node.h b/source/blender/depsgraph/intern/nodes/deg_node.h
index 79464ae5fa7..cc741224c71 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node.h
+++ b/source/blender/depsgraph/intern/nodes/deg_node.h
@@ -74,7 +74,6 @@ struct DepsNode {
virtual ~DepsNode();
virtual string identifier() const;
- string full_identifier() const;
virtual void init(const ID * /*id*/,
const char * /*subdata*/) {}