diff data/fft/FFTMemoryCache.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 1469caaa8e67
children 59e7fe1b1003
line wrap: on
line diff
--- a/data/fft/FFTMemoryCache.cpp	Tue Nov 26 11:16:37 2013 +0000
+++ b/data/fft/FFTMemoryCache.cpp	Tue Nov 26 13:35:08 2013 +0000
@@ -35,8 +35,8 @@
     m_storageType(storageType)
 {
 #ifdef DEBUG_FFT_MEMORY_CACHE
-    std::cerr << "FFTMemoryCache[" << this << "]::FFTMemoryCache (type "
-              << m_storageType << "), size " << m_width << "x" << m_height << std::endl;
+    cerr << "FFTMemoryCache[" << this << "]::FFTMemoryCache (type "
+              << m_storageType << "), size " << m_width << "x" << m_height << endl;
 #endif
 
     initialise();
@@ -45,7 +45,7 @@
 FFTMemoryCache::~FFTMemoryCache()
 {
 #ifdef DEBUG_FFT_MEMORY_CACHE
-    std::cerr << "FFTMemoryCache[" << this << "]::~FFTMemoryCache" << std::endl;
+    cerr << "FFTMemoryCache[" << this << "]::~FFTMemoryCache" << endl;
 #endif
 
     for (size_t i = 0; i < m_width; ++i) {
@@ -74,7 +74,7 @@
     size_t width = m_width, height = m_height;
 
 #ifdef DEBUG_FFT_MEMORY_CACHE
-    std::cerr << "FFTMemoryCache[" << this << "]::initialise(" << width << "x" << height << " = " << width*height << ")" << std::endl;
+    cerr << "FFTMemoryCache[" << this << "]::initialise(" << width << "x" << height << " = " << width*height << ")" << endl;
 #endif
 
     if (m_storageType == FFTCache::Compact) {
@@ -96,7 +96,7 @@
     m_height = height;
 
 #ifdef DEBUG_FFT_MEMORY_CACHE
-    std::cerr << "done, width = " << m_width << " height = " << m_height << std::endl;
+    cerr << "done, width = " << m_width << " height = " << m_height << endl;
 #endif
 }