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

View File

@ -44,13 +44,13 @@
#include <chrono> #include <chrono>
#include <fstream> #include <fstream>
#include <iostream> #include <iostream>
#include <memory>
#include <numeric> //partial_sum #include <numeric> //partial_sum
#include <thread> #include <thread>
#include <tuple> #include <tuple>
#include <type_traits> #include <type_traits>
#include <unordered_map> #include <unordered_map>
#include <vector> #include <vector>
#include <memory>
namespace osrm namespace osrm
{ {

View File

@ -21,8 +21,8 @@
#include <tbb/parallel_for.h> #include <tbb/parallel_for.h>
#include <sstream>
#include <memory> #include <memory>
#include <sstream>
namespace osrm namespace osrm
{ {

View File

@ -123,8 +123,7 @@ int main(int argc, char *argv[])
osrm::util::SimpleLogger().Write() << "Starting SCC graph traversal"; osrm::util::SimpleLogger().Write() << "Starting SCC graph traversal";
auto tarjan = auto tarjan = std::make_unique<osrm::extractor::TarjanSCC<osrm::tools::TarjanGraph>>(graph);
std::make_unique<osrm::extractor::TarjanSCC<osrm::tools::TarjanGraph>>(graph);
tarjan->Run(); tarjan->Run();
osrm::util::SimpleLogger().Write() << "identified: " << tarjan->GetNumberOfComponents() osrm::util::SimpleLogger().Write() << "identified: " << tarjan->GetNumberOfComponents()
<< " many components"; << " many components";

View File

@ -21,10 +21,10 @@
#include <chrono> #include <chrono>
#include <future> #include <future>
#include <iostream> #include <iostream>
#include <memory>
#include <new> #include <new>
#include <string> #include <string>
#include <thread> #include <thread>
#include <memory>
#ifdef _WIN32 #ifdef _WIN32
boost::function0<void> console_ctrl_function; boost::function0<void> console_ctrl_function;