From 5dad8ed66d4699a7753e2e41f33c938e7035b427 Mon Sep 17 00:00:00 2001 From: Michael Kutzner <174690291+MichaelKutzner@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:09:34 +0100 Subject: [PATCH] Fix header order --- exe/benchmark.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exe/benchmark.cc b/exe/benchmark.cc index a4d52d1..2b510e8 100644 --- a/exe/benchmark.cc +++ b/exe/benchmark.cc @@ -14,15 +14,15 @@ #include "conf/options_parser.h" -#include "osr/routing/profile.h" -#include "osr/types.h" #include "utl/timer.h" #include "osr/lookup.h" #include "osr/routing/dijkstra.h" +#include "osr/routing/profile.h" #include "osr/routing/profiles/bike.h" #include "osr/routing/profiles/car.h" #include "osr/routing/route.h" +#include "osr/types.h" #include "osr/ways.h" namespace fs = std::filesystem;