aboutsummaryrefslogtreecommitdiffhomepage
path: root/benchmark/bench_db.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_db.cpp
parent551103a084b480c87a0d8139415836aa79a21787 (diff)
Unify include order.
Diffstat (limited to 'benchmark/bench_db.cpp')
-rw-r--r--benchmark/bench_db.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/bench_db.cpp b/benchmark/bench_db.cpp
index 03983aab0..7c1e69318 100644
--- a/benchmark/bench_db.cpp
+++ b/benchmark/bench_db.cpp
@@ -4,9 +4,6 @@
// 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/db/binlog/Binlog.h"
#include "td/db/binlog/ConcurrentBinlog.h"
#include "td/db/BinlogKeyValue.h"
@@ -17,6 +14,9 @@
#include "td/db/SqliteKeyValueAsync.h"
#include "td/db/SqliteKeyValueSafe.h"
+#include "td/actor/actor.h"
+#include "td/actor/ConcurrentScheduler.h"
+
#include "td/utils/benchmark.h"
#include "td/utils/common.h"
#include "td/utils/format.h"