aboutsummaryrefslogtreecommitdiffhomepage
path: root/benchmark/bench_http_server_fast.cpp
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2021-09-19 00:47:05 +0300
committerlevlam <levlam@telegram.org>2021-09-19 00:47:05 +0300
commitdb18baa50398773b96cb68164d9cb0937725af44 (patch)
treef978c1eec81eb3f9cad7f11f934e057be4f8950a /benchmark/bench_http_server_fast.cpp
parent551103a084b480c87a0d8139415836aa79a21787 (diff)
Unify include order.
Diffstat (limited to 'benchmark/bench_http_server_fast.cpp')
-rw-r--r--benchmark/bench_http_server_fast.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/bench_http_server_fast.cpp b/benchmark/bench_http_server_fast.cpp
index 1d2896346..d0a0e115b 100644
--- a/benchmark/bench_http_server_fast.cpp
+++ b/benchmark/bench_http_server_fast.cpp
@@ -4,14 +4,14 @@
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
-#include "td/actor/actor.h"
-#include "td/actor/ConcurrentScheduler.h"
-
#include "td/net/HttpHeaderCreator.h"
#include "td/net/HttpQuery.h"
#include "td/net/HttpReader.h"
#include "td/net/TcpListener.h"
+#include "td/actor/actor.h"
+#include "td/actor/ConcurrentScheduler.h"
+
#include "td/utils/buffer.h"
#include "td/utils/BufferedFd.h"
#include "td/utils/logging.h"