Skip to content

Commit 9692ace

Browse files
committed
Yet another comment update, because macros should have a lot of them.
1 parent 81528c6 commit 9692ace

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/node.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,15 @@ public: \
3939
private: \
4040
std::set<cdg::Edge<__this, __that>*> __tails_name; \
4141
std::set<cdg::Edge<__that, __this>*> __heads_name;
42+
// end CDG_NODE_CREATE_RELATIONSHIP
4243

4344

4445
// Optional automatic edge deletion for a named collection.
4546
// This macro should be placed in the User Node class destructor.
4647
#define CDG_NODE_DESTRUCT_RELATIONSHIP(__edge_collection) \
4748
for (auto& edge : __edge_collection) delete edge; \
4849
__edge_collection.clear();
49-
50+
// end CDG_NODE_DESTRUCT_RELATIONSHP
5051

5152
/*
5253
* Node

0 commit comments

Comments
 (0)