changeset 577:f9cf4b49b08b sv-v1.5

* debug tidy
author Chris Cannam
date Mon, 16 Mar 2009 16:41:42 +0000
parents 2ba202c5be8d
children b3a87e81c761
files data/fft/FFTFileCacheWriter.cpp
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/data/fft/FFTFileCacheWriter.cpp	Mon Mar 16 16:36:23 2009 +0000
+++ b/data/fft/FFTFileCacheWriter.cpp	Mon Mar 16 16:41:42 2009 +0000
@@ -43,7 +43,9 @@
            storageType == FFTCache::Compact ? sizeof(uint16_t) : sizeof(float),
            width, height * 2 + m_factorSize))
 {
+#ifdef DEBUG_FFT_FILE_CACHE_WRITER
     std::cerr << "FFTFileCacheWriter: storage type is " << (storageType == FFTCache::Compact ? "Compact" : storageType == FFTCache::Polar ? "Polar" : "Rectangular") << ", size " << width << "x" << height << std::endl;
+#endif
     m_mfc->setAutoClose(true);
     m_writebuf = new char[(height * 2 + m_factorSize) * m_mfc->getCellSize()];
 }