summaryrefslogtreecommitdiff
path: root/src/lib/uploader.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-01-09 16:29:21 +0100
committerCarl Hetherington <cth@carlh.net>2022-01-09 16:29:21 +0100
commit92b7d1cffbd0d457f8b4b23cc72937bcf8e5ed5e (patch)
treeb175db682422765468991702e8563bcd89713b70 /src/lib/uploader.cc
parent7392cb8383c9b857edad5f99eaf917ed70da237d (diff)
Tidying.
Diffstat (limited to 'src/lib/uploader.cc')
-rw-r--r--src/lib/uploader.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/uploader.cc b/src/lib/uploader.cc
index c5448e469..ccf8b7feb 100644
--- a/src/lib/uploader.cc
+++ b/src/lib/uploader.cc
@@ -19,16 +19,16 @@
*/
-#include "uploader.h"
-#include "dcpomatic_assert.h"
#include "compose.hpp"
+#include "dcpomatic_assert.h"
+#include "uploader.h"
#include "i18n.h"
-using std::string;
-using std::shared_ptr;
using std::function;
+using std::shared_ptr;
+using std::string;
Uploader::Uploader (function<void (string)> set_status, function<void (float)> set_progress)