diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-01-11 22:49:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-11 22:49:32 +0100 |
| commit | fb415933fc53d55f25b46d00065fc39ffda43eb4 (patch) | |
| tree | 0ade556addb1cffa033c71babead86f562322928 /src | |
| parent | 1900aff395ecace8bfa8bd367a2e0327f4d2736d (diff) | |
Cleanup: using/include sorting.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic_server.cc | 22 |
1 files changed, 11 insertions, 11 deletions
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 <dcp/warnings.h> LIBDCP_DISABLE_WARNINGS #include <wx/icon.h> @@ -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 |
