X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_content.h;h=136c527a5c3d7bf84931ca3b2c3fc4b34483684d;hb=8fedaaa75c4586a4cc7ffb393bd71d1fdb091dc8;hp=c235dd823c975df375042a30d8dd4f61c8df5503;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index c235dd823..136c527a5 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -117,7 +117,7 @@ public: */ bool reference_text (TextType type) const { boost::mutex::scoped_lock lm (_mutex); - return _reference_text[type]; + return _reference_text[static_cast(type)]; } bool can_reference_text (std::shared_ptr film, TextType type, std::string &) const; @@ -201,7 +201,7 @@ private: * rather than by rewrapping. The types here are the original text types, * not what they are being used for. */ - bool _reference_text[TEXT_COUNT]; + bool _reference_text[static_cast(TextType::COUNT)]; boost::optional _standard; boost::optional _content_kind;