Skip to content

Commit

Permalink
Fixing compiler error with missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Heller committed Aug 21, 2017
1 parent a0e0001 commit 388aad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allscale/runtime.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ allscale::treeture<void> treeture_sequential(const dependencies&, allscale::tree

template<typename A, typename B>
allscale::treeture<void> treeture_sequential(allscale::treeture<A>&& a, allscale::treeture<B>&& b) {
return treeture_sequential(dependencies{}, std::move(a),std::move(b));
return treeture_sequential(dependencies{hpx::future<void>()}, std::move(a),std::move(b));
}


Expand Down

0 comments on commit 388aad8

Please sign in to comment.