Skip to content

Commit

Permalink
Cosmetic.
Browse files Browse the repository at this point in the history
Signed-off-by: cneben <[email protected]>
  • Loading branch information
cneben authored and emmenlau committed Mar 31, 2023
1 parent 137dd8e commit 16f5c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qanGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1982,7 +1982,7 @@ std::vector<const qan::Node*> Graph::collectAncestors(const qan::Node& node) c
std::unordered_set<const qan::Node*> marks;
auto excepts = collectGroups(node);
excepts.push_back(&node);
qWarning() << "qan::Graph::collectAncestors(): excepts.size=" << excepts.size();
//qWarning() << "qan::Graph::collectAncestors(): excepts.size=" << excepts.size();

// 0. Collect target nodes
std::vector<const qan::Node*> targetNodes;
Expand Down Expand Up @@ -2042,7 +2042,7 @@ std::vector<const qan::Node*> Graph::collectChilds(const qan::Node& node) cons
// 0. Collect node neighbours
auto excepts = collectGroups(node);
excepts.push_back(&node);
qWarning() << "qan::Graph::collectChilds(): excepts.size=" << excepts.size();
//qWarning() << "qan::Graph::collectChilds(): excepts.size=" << excepts.size();

std::vector<const qan::Node*> targetNodes;
if (node.isGroup()) {
Expand Down

0 comments on commit 16f5c02

Please sign in to comment.