diff data/fft/FFTFileCacheReader.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 1424aa29ae95
children 59e7fe1b1003
line wrap: on
line diff
--- a/data/fft/FFTFileCacheReader.cpp	Tue Nov 26 11:16:37 2013 +0000
+++ b/data/fft/FFTFileCacheReader.cpp	Tue Nov 26 13:35:08 2013 +0000
@@ -44,7 +44,7 @@
            writer->getWidth(),
            writer->getHeight() * 2 + m_factorSize))
 {
-//    std::cerr << "FFTFileCacheReader: storage type is " << (storageType == FFTCache::Compact ? "Compact" : storageType == Polar ? "Polar" : "Rectangular") << std::endl;
+//    cerr << "FFTFileCacheReader: storage type is " << (storageType == FFTCache::Compact ? "Compact" : storageType == Polar ? "Polar" : "Rectangular") << endl;
 }
 
 FFTFileCacheReader::~FFTFileCacheReader()
@@ -267,8 +267,8 @@
         }
         m_readbufGood = good;
     } catch (FileReadFailed f) {
-        std::cerr << "ERROR: FFTFileCacheReader::populateReadBuf: File read failed: "
-                  << f.what() << std::endl;
+        cerr << "ERROR: FFTFileCacheReader::populateReadBuf: File read failed: "
+                  << f.what() << endl;
         memset(m_readbuf, 0, m_mfc->getHeight() * 2 * m_mfc->getCellSize());
     }
     m_readbufCol = x;