We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81528c6 commit 9692aceCopy full SHA for 9692ace
1 file changed
src/node.h
@@ -39,14 +39,15 @@ public: \
39
private: \
40
std::set<cdg::Edge<__this, __that>*> __tails_name; \
41
std::set<cdg::Edge<__that, __this>*> __heads_name;
42
+// end CDG_NODE_CREATE_RELATIONSHIP
43
44
45
// Optional automatic edge deletion for a named collection.
46
// This macro should be placed in the User Node class destructor.
47
#define CDG_NODE_DESTRUCT_RELATIONSHIP(__edge_collection) \
48
for (auto& edge : __edge_collection) delete edge; \
49
__edge_collection.clear();
-
50
+// end CDG_NODE_DESTRUCT_RELATIONSHP
51
52
/*
53
* Node
0 commit comments