comparison transform/CSVFeatureWriter.cpp @ 690:1424aa29ae95

Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author Chris Cannam
date Tue, 14 Jun 2011 15:26:52 +0100
parents 06f13a3b9e9e
children 06579b8ffb7b
comparison
equal deleted inserted replaced
689:573d45e9487b 690:1424aa29ae95
62 void 62 void
63 CSVFeatureWriter::setParameters(map<string, string> &params) 63 CSVFeatureWriter::setParameters(map<string, string> &params)
64 { 64 {
65 FileFeatureWriter::setParameters(params); 65 FileFeatureWriter::setParameters(params);
66 66
67 DEBUG << "CSVFeatureWriter::setParameters" << endl; 67 SVDEBUG << "CSVFeatureWriter::setParameters" << endl;
68 for (map<string, string>::iterator i = params.begin(); 68 for (map<string, string>::iterator i = params.begin();
69 i != params.end(); ++i) { 69 i != params.end(); ++i) {
70 cerr << i->first << " -> " << i->second << endl; 70 cerr << i->first << " -> " << i->second << endl;
71 if (i->first == "separator") { 71 if (i->first == "separator") {
72 m_separator = i->second.c_str(); 72 m_separator = i->second.c_str();