mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Task: Improved method signature
This commit is contained in:
parent
5193f7d03e
commit
245ed39b78
7 changed files with 26 additions and 52 deletions
|
@ -82,8 +82,7 @@ bool dependencyIsCircular (const Task& task)
|
|||
while (! s.empty ())
|
||||
{
|
||||
Task& current = s.top ();
|
||||
std::vector <std::string> deps_current;
|
||||
current.getDependencies (deps_current);
|
||||
auto deps_current = current.getDependencyUUIDs ();
|
||||
|
||||
// This is a basic depth first search that always terminates given the
|
||||
// fact that we do not visit any task twice
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue