No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / image_filename_sorter.cc
index 805c469b03f14642218190511bada56aa4bc6500..5a3e1dcecf6ce11297ba7c94c00945393d4d7377 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();
                }
 
@@ -41,7 +40,7 @@ private:
        boost::optional<int> extract_number (boost::filesystem::path p)
        {
                p = p.leaf ();
-               
+
                std::string number;
                for (size_t i = 0; i < p.string().size(); ++i) {
                        if (isdigit (p.string()[i])) {