diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-16 23:56:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-20 22:10:11 +0200 |
| commit | 471dee40c1476aba2ff0cff7a57b31306c50b93e (patch) | |
| tree | 05b28fa5d11a841ed8daa95dab8f1a05e63b0875 /src/wx | |
| parent | 58e94d1c412cd87a28fca99b46c7d5cf408f8186 (diff) | |
C++11 tidying.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/video_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
