Skip to content

Commit

Permalink
run clang-format [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed May 26, 2016
1 parent c93487a commit b1bcb25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/contractor/contractor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,12 +496,12 @@ std::size_t Contractor::LoadEdgeExpandedGraph(
// vector to count used speeds for logging
// size offset by one since index 0 is used for speeds not from external file
std::vector<std::atomic<std::uint64_t>> segment_speeds_counters;
for (std::size_t i=0;i<segment_speed_filenames.size() + 1;++i)
{
for (std::size_t i = 0; i < segment_speed_filenames.size() + 1; ++i)
{
segment_speeds_counters.emplace_back();
segment_speeds_counters[i].store(0);
}
const constexpr auto LUA_SOURCE = 0;
const constexpr auto LUA_SOURCE = 0;

tbb::parallel_for_each(first, last, [&](const LeafNode &current_node) {
for (size_t i = 0; i < current_node.object_count; i++)
Expand Down

0 comments on commit b1bcb25

Please sign in to comment.