From: Carl Hetherington Date: Mon, 14 Mar 2022 19:24:13 +0000 (+0100) Subject: C++11 tidying. X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=4ea552fbdefa096c461c933f09beb1c6d0cc3f8a;p=dcpomatic.git C++11 tidying. --- diff --git a/src/lib/butler.cc b/src/lib/butler.cc index 686fa9f72..de6a65126 100644 --- a/src/lib/butler.cc +++ b/src/lib/butler.cc @@ -149,7 +149,7 @@ Butler::should_run () const if (_audio.size() >= MAXIMUM_AUDIO_READAHEAD * 10) { /* This is way too big */ - optional pos = _audio.peek(); + auto pos = _audio.peek(); if (pos) { throw ProgrammingError (__FILE__, __LINE__, String::compose ("Butler audio buffers reached %1 frames at %2 (video is %3)", _audio.size(), pos->get(), _video.size()));