From: Kefu Chai Date: Thu, 15 Dec 2022 05:34:16 +0000 (+0800) Subject: test/crimson: include system and 3rd-party headers first X-Git-Tag: v18.1.0~633^2~6 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3a1c5ac47d6194a5f83856b92cce8c8c3c14e570;p=ceph.git 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 --- 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;