run clang-format on edited files

This commit is contained in:
Huyen Chau Nguyen
2016-10-17 11:23:19 -07:00
committed by Daniel J. H
parent d0c142b9c7
commit 06d13b6954
4 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -123,8 +123,7 @@ int main(int argc, char *argv[])
osrm::util::SimpleLogger().Write() << "Starting SCC graph traversal";
auto tarjan =
std::make_unique<osrm::extractor::TarjanSCC<osrm::tools::TarjanGraph>>(graph);
auto tarjan = std::make_unique<osrm::extractor::TarjanSCC<osrm::tools::TarjanGraph>>(graph);
tarjan->Run();
osrm::util::SimpleLogger().Write() << "identified: " << tarjan->GetNumberOfComponents()
<< " many components";
+1 -1
View File
@@ -21,10 +21,10 @@
#include <chrono>
#include <future>
#include <iostream>
#include <memory>
#include <new>
#include <string>
#include <thread>
#include <memory>
#ifdef _WIN32
boost::function0<void> console_ctrl_function;