comparison data/model/DenseTimeValueModel.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 33fca917c800
children 59e7fe1b1003
comparison
equal deleted inserted replaced
842:23d3a6eca5c3 843:e802e550a1f2
31 QString 31 QString
32 DenseTimeValueModel::toDelimitedDataString(QString delimiter, size_t f0, size_t f1) const 32 DenseTimeValueModel::toDelimitedDataString(QString delimiter, size_t f0, size_t f1) const
33 { 33 {
34 size_t ch = getChannelCount(); 34 size_t ch = getChannelCount();
35 35
36 std::cerr << "f0 = " << f0 << ", f1 = " << f1 << std::endl; 36 cerr << "f0 = " << f0 << ", f1 = " << f1 << endl;
37 37
38 if (f1 <= f0) return ""; 38 if (f1 <= f0) return "";
39 39
40 float **all = new float *[ch]; 40 float **all = new float *[ch];
41 for (size_t c = 0; c < ch; ++c) { 41 for (size_t c = 0; c < ch; ++c) {