Use a constexpr and a nullptr.
[dcpomatic.git] / src / lib / dcp_encoder.h
index 65782d968c2580c2bde0d2a7e4b6b4cca227dad2..cc4e7ae7f50b2ca492d0d1de20879194217fc51d 100644 (file)
@@ -40,13 +40,13 @@ public:
        DCPEncoder (std::shared_ptr<const Film> film, std::weak_ptr<Job> job);
        ~DCPEncoder ();
 
-       void go ();
+       void go () override;
 
-       boost::optional<float> current_rate () const;
-       Frame frames_done () const;
+       boost::optional<float> current_rate () const override;
+       Frame frames_done () const override;
 
        /** @return true if we are in the process of calling Encoder::process_end */
-       bool finishing () const {
+       bool finishing () const override {
                return _finishing;
        }