Skip to content

Commit

Permalink
debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Feb 7, 2015
1 parent ebae96e commit 551093a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Project.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,7 @@ Set<Symbol> Project::findVirtuals(const Symbol &symbol)
for (const String &usr : targets->value(sym.location)) {
for (const Symbol &symbol : findByUsr(usr, sym.location.fileId(), ArgDependsOn)) {
if (ret.insert(symbol)) {
error() << "inserted one target for" << sym.location << symbol.location;
findTargets(symbol);
}
}
Expand All @@ -1186,6 +1187,7 @@ Set<Symbol> Project::findVirtuals(const Symbol &symbol)
});
for (const Symbol &s : r) {
if (ret.insert(s)) {
error() << "inserted one reference for" << sym.location << s.location;
addTargets(s);
}
}
Expand Down

0 comments on commit 551093a

Please sign in to comment.