Mercurial > hg > svcore
comparison data/fileio/CSVFormat.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 | e50a8fee6752 |
children | 69cc0454ed72 |
comparison
equal
deleted
inserted
replaced
842:23d3a6eca5c3 | 843:e802e550a1f2 |
---|---|
174 if (lineno == 0 || cols > m_maxExampleCols) { | 174 if (lineno == 0 || cols > m_maxExampleCols) { |
175 m_maxExampleCols = cols; | 175 m_maxExampleCols = cols; |
176 } | 176 } |
177 } | 177 } |
178 | 178 |
179 // std::cerr << "Estimated column qualities: "; | 179 // cerr << "Estimated column qualities: "; |
180 // for (int i = 0; i < m_columnCount; ++i) { | 180 // for (int i = 0; i < m_columnCount; ++i) { |
181 // std::cerr << int(m_columnQualities[i]) << " "; | 181 // cerr << int(m_columnQualities[i]) << " "; |
182 // } | 182 // } |
183 // std::cerr << std::endl; | 183 // cerr << endl; |
184 } | 184 } |
185 | 185 |
186 void | 186 void |
187 CSVFormat::guessPurposes() | 187 CSVFormat::guessPurposes() |
188 { | 188 { |
286 } else { | 286 } else { |
287 m_modelType = ThreeDimensionalModel; | 287 m_modelType = ThreeDimensionalModel; |
288 } | 288 } |
289 } | 289 } |
290 | 290 |
291 // std::cerr << "Estimated column purposes: "; | 291 // cerr << "Estimated column purposes: "; |
292 // for (int i = 0; i < m_columnCount; ++i) { | 292 // for (int i = 0; i < m_columnCount; ++i) { |
293 // std::cerr << int(m_columnPurposes[i]) << " "; | 293 // cerr << int(m_columnPurposes[i]) << " "; |
294 // } | 294 // } |
295 // std::cerr << std::endl; | 295 // cerr << endl; |
296 | 296 |
297 // std::cerr << "Estimated model type: " << m_modelType << std::endl; | 297 // cerr << "Estimated model type: " << m_modelType << endl; |
298 // std::cerr << "Estimated timing type: " << m_timingType << std::endl; | 298 // cerr << "Estimated timing type: " << m_timingType << endl; |
299 // std::cerr << "Estimated units: " << m_timeUnits << std::endl; | 299 // cerr << "Estimated units: " << m_timeUnits << endl; |
300 } | 300 } |
301 | 301 |
302 CSVFormat::ColumnPurpose | 302 CSVFormat::ColumnPurpose |
303 CSVFormat::getColumnPurpose(int i) | 303 CSVFormat::getColumnPurpose(int i) |
304 { | 304 { |