diff options
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<int>(type)]; } bool can_reference_text (std::shared_ptr<const Film> 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<int>(TextType::COUNT)]; boost::optional<dcp::Standard> _standard; boost::optional<dcp::ContentKind> _content_kind; |
