Depsgraph: Cleanup, remove unused relation tag

This commit is contained in:
Sergey Sharybin 2018-04-23 14:34:56 +02:00
parent b14979f91f
commit 41cf2d9042
1 changed files with 2 additions and 5 deletions

View File

@ -59,13 +59,10 @@ struct OperationDepsNode;
/* Settings/Tags on Relationship */
typedef enum eDepsRelation_Flag {
/* "touched" tag is used when filtering, to know which to collect */
DEPSREL_FLAG_TEMP_TAG = (1 << 0),
/* "cyclic" link - when detecting cycles, this relationship was the one
* which triggers a cyclic relationship to exist in the graph
* which triggers a cyclic relationship to exist in the graph.
*/
DEPSREL_FLAG_CYCLIC = (1 << 1),
DEPSREL_FLAG_CYCLIC = (1 << 0),
} eDepsRelation_Flag;
/* B depends on A (A -> B) */