diff layer/PaintAssistant.cpp @ 682:1a0dfcbffaf1

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 14:06:40 +0000
parents 4806715f7a19
children b66fb15de477
line wrap: on
line diff
--- a/layer/PaintAssistant.cpp	Tue Nov 26 11:16:45 2013 +0000
+++ b/layer/PaintAssistant.cpp	Tue Nov 26 14:06:40 2013 +0000
@@ -52,13 +52,13 @@
         } while (!round && mult < limit);
         if (round) {
             mult /= 10;
-//            std::cerr << "\n\nstep goes from " << step;
+//            cerr << "\n\nstep goes from " << step;
             step = float(round) / mult;
             n = lrintf((maxVal - minVal) / step);
             if (mult > 1) {
                 mult /= 10;
             }
-//            std::cerr << " to " << step << " (n = " << n << ")" << std::endl;
+//            cerr << " to " << step << " (n = " << n << ")" << endl;
         }
     }