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:
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_relation.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_relation.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_relation.h b/source/blender/depsgraph/intern/depsgraph_relation.h
index 2f9f0249b1f..7154710e07e 100644
--- a/source/blender/depsgraph/intern/depsgraph_relation.h
+++ b/source/blender/depsgraph/intern/depsgraph_relation.h
@@ -23,7 +23,10 @@
#pragma once
-namespace DEG {
+#include "MEM_guardedalloc.h"
+
+namespace blender {
+namespace deg {
struct Node;
@@ -58,6 +61,9 @@ struct Relation {
/* relationship attributes */
const char *name; /* label for debugging */
int flag; /* Bitmask of RelationFlag) */
+
+ MEM_CXX_CLASS_ALLOC_FUNCS("Relation");
};
-} // namespace DEG
+} // namespace deg
+} // namespace blender