diff data/model/FFTModel.cpp @ 843:e802e550a1f2

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 13:35:08 +0000
parents d7f3dfe6f9a4
children 59e7fe1b1003
line wrap: on
line diff
--- a/data/model/FFTModel.cpp	Tue Nov 26 11:16:37 2013 +0000
+++ b/data/model/FFTModel.cpp	Tue Nov 26 13:35:08 2013 +0000
@@ -61,10 +61,10 @@
 
     while (xratio > 1) {
         if (xratio & 0x1) {
-            std::cerr << "ERROR: FFTModel: Window increment ratio "
+            cerr << "ERROR: FFTModel: Window increment ratio "
                       << windowIncrement << " / "
                       << m_server->getWindowIncrement()
-                      << " must be a power of two" << std::endl;
+                      << " must be a power of two" << endl;
             assert(!(xratio & 0x1));
         }
         ++m_xshift;
@@ -73,9 +73,9 @@
 
     while (yratio > 1) {
         if (yratio & 0x1) {
-            std::cerr << "ERROR: FFTModel: FFT size ratio "
+            cerr << "ERROR: FFTModel: FFT size ratio "
                       << m_server->getFFTSize() << " / " << fftSize
-                      << " must be a power of two" << std::endl;
+                      << " must be a power of two" << endl;
             assert(!(yratio & 0x1));
         }
         ++m_yshift;
@@ -92,7 +92,7 @@
 FFTModel::sourceModelAboutToBeDeleted()
 {
     if (m_sourceModel) {
-        std::cerr << "FFTModel[" << this << "]::sourceModelAboutToBeDeleted(" << m_sourceModel << ")" << std::endl;
+        cerr << "FFTModel[" << this << "]::sourceModelAboutToBeDeleted(" << m_sourceModel << ")" << endl;
         if (m_server) {
             FFTDataServer::releaseInstance(m_server);
             m_server = 0;