Remove approximate size stuff where playback viewer would round
[dcpomatic.git] / src / lib / image_filename_sorter.cc
index 805c469b03f14642218190511bada56aa4bc6500..0cb6adc6bf182705490e44eed16c80b70ccd0741 100644 (file)
@@ -30,7 +30,6 @@ public:
                boost::optional<int> na = extract_number (a);
                boost::optional<int> nb = extract_number (b);
                if (!na || !nb) {
-                       std::cout << a << " " << b << " " << (a.string() < b.string()) << "\n";
                        return a.string() < b.string();
                }