Fix erroneous optional dereference.
[dcpomatic.git] / src / lib / filter.h
index 258e7499126f370b8fa617ed5c1e654c99b537d0..39687fcd45981dce485f882d452d4a8bbe44591d 100644 (file)
@@ -24,9 +24,9 @@
 #ifndef DCPOMATIC_FILTER_H
 #define DCPOMATIC_FILTER_H
 
+#include <boost/utility.hpp>
 #include <string>
 #include <vector>
-#include <boost/utility.hpp>
 
 /** @class Filter
  *  @brief A class to describe one of FFmpeg's video filters.
@@ -54,11 +54,11 @@ public:
        std::string vf () const {
                return _vf;
        }
-       
+
        std::string category () const {
                return _category;
        }
-       
+
        static std::vector<Filter const *> all ();
        static Filter const * from_id (std::string);
        static void setup_filters ();