Some missing copy constructors / operator= / noncopyable.
[dcpomatic.git] / src / lib / types.cc
index 1e0f48327bfe0a35aa5097985ea859fcaebf8690..035c8363db10a1d8ba67c40134811fa9467b4611 100644 (file)
@@ -19,6 +19,9 @@
 
 #include "types.h"
 
+using std::max;
+using std::min;
+
 bool operator== (Crop const & a, Crop const & b)
 {
        return (a.left == b.left && a.right == b.right && a.top == b.top && a.bottom == b.bottom);