From: Carl Hetherington Date: Thu, 11 Jan 2024 21:49:32 +0000 (+0100) Subject: Cleanup: using/include sorting. X-Git-Tag: v2.16.72~30 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=fb415933fc53d55f25b46d00065fc39ffda43eb4 Cleanup: using/include sorting. --- diff --git a/src/tools/dcpomatic_server.cc b/src/tools/dcpomatic_server.cc index e5e3a7e5a..d93dec853 100644 --- a/src/tools/dcpomatic_server.cc +++ b/src/tools/dcpomatic_server.cc @@ -18,17 +18,17 @@ */ -#include "wx/wx_util.h" -#include "wx/wx_signal_manager.h" #include "wx/static_text.h" -#include "lib/util.h" -#include "lib/encoded_log_entry.h" -#include "lib/encode_server.h" +#include "wx/wx_signal_manager.h" +#include "wx/wx_util.h" #include "lib/config.h" -#include "lib/log.h" -#include "lib/signaller.h" #include "lib/cross.h" #include "lib/dcpomatic_log.h" +#include "lib/encode_server.h" +#include "lib/encoded_log_entry.h" +#include "lib/log.h" +#include "lib/signaller.h" +#include "lib/util.h" #include LIBDCP_DISABLE_WARNINGS #include @@ -41,16 +41,16 @@ LIBDCP_ENABLE_WARNINGS using std::cout; -using std::string; +using std::dynamic_pointer_cast; using std::exception; -using std::list; using std::fixed; +using std::list; using std::setprecision; using std::shared_ptr; -using boost::thread; +using std::string; using boost::bind; using boost::optional; -using std::dynamic_pointer_cast; +using boost::thread; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; #endif