From 3a1c5ac47d6194a5f83856b92cce8c8c3c14e570 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 15 Dec 2022 13:34:16 +0800 Subject: [PATCH] test/crimson: include system and 3rd-party headers first see also https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes Signed-off-by: Kefu Chai --- src/test/crimson/test_messenger_thrash.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/test/crimson/test_messenger_thrash.cc b/src/test/crimson/test_messenger_thrash.cc index 0f94d76f9c0a5..3d1f6044c3afd 100644 --- a/src/test/crimson/test_messenger_thrash.cc +++ b/src/test/crimson/test_messenger_thrash.cc @@ -1,15 +1,6 @@ // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab -#include "common/ceph_argparse.h" -#include "messages/MPing.h" -#include "messages/MCommand.h" -#include "crimson/auth/DummyAuth.h" -#include "crimson/common/log.h" -#include "crimson/net/Connection.h" -#include "crimson/net/Dispatcher.h" -#include "crimson/net/Messenger.h" - #include #include #include @@ -21,6 +12,15 @@ #include #include +#include "common/ceph_argparse.h" +#include "messages/MPing.h" +#include "messages/MCommand.h" +#include "crimson/auth/DummyAuth.h" +#include "crimson/common/log.h" +#include "crimson/net/Connection.h" +#include "crimson/net/Dispatcher.h" +#include "crimson/net/Messenger.h" + using namespace std::chrono_literals; namespace bpo = boost::program_options; using crimson::common::local_conf; -- 2.39.5