diff --git a/src/partitioner/recursive_bisection.cpp b/src/partitioner/recursive_bisection.cpp index 36c5a0b53..63b3a39fd 100644 --- a/src/partitioner/recursive_bisection.cpp +++ b/src/partitioner/recursive_bisection.cpp @@ -61,8 +61,9 @@ RecursiveBisection::RecursiveBisection(BisectionGraph &bisection_graph_, std::transform(first, last, std::back_inserter(forest), - [this](auto graph) - { return TreeNode{std::move(graph), internal_state.SCCDepth()}; }); + [this](auto graph) { + return TreeNode{std::move(graph), internal_state.SCCDepth()}; + }); using Feeder = tbb::feeder;