summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-24 21:27:08 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-24 21:27:08 +0200
commit5d7a7be65bca85054bbe108f3b24e8704c2af4c8 (patch)
treed104958bc30b840e692a028a930732889a5388e5 /src
parente56d7a62de8e2f7daa896b04fddbae4054e8e55c (diff)
Tidying.
Diffstat (limited to 'src')
-rw-r--r--src/dcp.cc18
-rw-r--r--src/dcp.h6
2 files changed, 12 insertions, 12 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 987a2333..3de683bc 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -70,24 +70,24 @@ LIBDCP_ENABLE_WARNINGS
LIBDCP_DISABLE_WARNINGS
#include <libxml++/libxml++.h>
LIBDCP_ENABLE_WARNINGS
-#include <boost/filesystem.hpp>
#include <boost/algorithm/string.hpp>
+#include <boost/filesystem.hpp>
#include <numeric>
-using std::string;
-using std::list;
-using std::vector;
+using std::cerr;
using std::cout;
+using std::dynamic_pointer_cast;
+using std::exception;
+using std::list;
using std::make_pair;
-using std::map;
-using std::cerr;
using std::make_shared;
-using std::exception;
+using std::map;
using std::shared_ptr;
-using std::dynamic_pointer_cast;
-using boost::optional;
+using std::string;
+using std::vector;
using boost::algorithm::starts_with;
+using boost::optional;
using namespace dcp;
diff --git a/src/dcp.h b/src/dcp.h
index d80aa9db..1e92512a 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -41,12 +41,12 @@
#define LIBDCP_DCP_H
-#include "compose.hpp"
-#include "types.h"
-#include "util.h"
#include "certificate.h"
+#include "compose.hpp"
#include "metadata.h"
#include "name_format.h"
+#include "types.h"
+#include "util.h"
#include "verify.h"
#include "version.h"
#include <boost/signals2.hpp>