summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-16 23:56:06 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-20 22:10:11 +0200
commit471dee40c1476aba2ff0cff7a57b31306c50b93e (patch)
tree05b28fa5d11a841ed8daa95dab8f1a05e63b0875
parent58e94d1c412cd87a28fca99b46c7d5cf408f8186 (diff)
C++11 tidying.
-rw-r--r--src/lib/butler.cc16
-rw-r--r--src/wx/video_view.cc2
2 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/butler.cc b/src/lib/butler.cc
index de6a65126..27b39ba4f 100644
--- a/src/lib/butler.cc
+++ b/src/lib/butler.cc
@@ -20,25 +20,25 @@
#include "butler.h"
-#include "player.h"
-#include "util.h"
-#include "log.h"
-#include "dcpomatic_log.h"
-#include "cross.h"
#include "compose.hpp"
+#include "cross.h"
+#include "dcpomatic_log.h"
#include "exceptions.h"
+#include "log.h"
+#include "player.h"
+#include "util.h"
#include "video_content.h"
using std::cout;
-using std::pair;
+using std::function;
using std::make_pair;
+using std::pair;
+using std::shared_ptr;
using std::string;
using std::weak_ptr;
-using std::shared_ptr;
using boost::bind;
using boost::optional;
-using std::function;
using namespace dcpomatic;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
diff --git a/src/wx/video_view.cc b/src/wx/video_view.cc
index 1c645f11f..ac6357e62 100644
--- a/src/wx/video_view.cc
+++ b/src/wx/video_view.cc
@@ -111,7 +111,7 @@ VideoView::time_until_next_frame () const
{
if (length() == dcpomatic::DCPTime()) {
/* There's no content, so this doesn't matter */
- return optional<int>();
+ return {};
}
auto const next = position() + one_video_frame();