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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-07 23:29:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-07 23:29:21 +0300
commit0abf754748cbab97749acb581aceca4ba9315ac5 (patch)
tree3595f9dd48e77613c7fad6021067bf9f666e5c58 /source/blender/depsgraph
parent0021273b312828c497ae80a3591ad68442bae6c5 (diff)
Cleanup: sort struct blocks, description
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes.h2
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.h4
-rw-r--r--source/blender/depsgraph/intern/depsgraph.h2
-rw-r--r--source/blender/depsgraph/intern/node/deg_node.h2
-rw-r--r--source/blender/depsgraph/intern/node/deg_node_operation.h2
5 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
index 4d1f8dbb82d..adfd22d203a 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
@@ -67,9 +67,9 @@ struct PropertyRNA;
namespace DEG {
struct ComponentNode;
-struct Node;
struct Depsgraph;
struct IDNode;
+struct Node;
struct OperationNode;
struct TimeSourceNode;
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.h b/source/blender/depsgraph/intern/builder/deg_builder_relations.h
index 40b77959d20..8765a8a5eb4 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.h
@@ -80,12 +80,12 @@ struct PropertyRNA;
namespace DEG {
struct ComponentNode;
-struct Node;
struct DepsNodeHandle;
-struct Relation;
struct Depsgraph;
struct IDNode;
+struct Node;
struct OperationNode;
+struct Relation;
struct RootPChanMap;
struct TimeSourceNode;
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index 1b0913d4722..9a0b01d8679 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -53,8 +53,8 @@ struct ViewLayer;
namespace DEG {
struct ComponentNode;
-struct Node;
struct IDNode;
+struct Node;
struct OperationNode;
struct TimeSourceNode;
diff --git a/source/blender/depsgraph/intern/node/deg_node.h b/source/blender/depsgraph/intern/node/deg_node.h
index 40280128743..59eca34cc70 100644
--- a/source/blender/depsgraph/intern/node/deg_node.h
+++ b/source/blender/depsgraph/intern/node/deg_node.h
@@ -32,9 +32,9 @@ struct Scene;
namespace DEG {
-struct Relation;
struct Depsgraph;
struct OperationNode;
+struct Relation;
/* Metatype of Nodes - The general "level" in the graph structure
* the node serves. */
diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.h b/source/blender/depsgraph/intern/node/deg_node_operation.h
index 990e866ed8c..9aff992550f 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.h
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.h
@@ -26,8 +26,8 @@
#include "intern/depsgraph_type.h"
-struct ID;
struct Depsgraph;
+struct ID;
namespace DEG {