comparison transform/CSVFeatureWriter.cpp @ 1582:70e172e6cc59 fix-static-analysis

Use nullptr throughout
author Chris Cannam
date Mon, 26 Nov 2018 14:33:41 +0000
parents 87ae75da6527
children
comparison
equal deleted inserted replaced
1581:ad5f892c0c4d 1582:70e172e6cc59
172 172
173 for (int i = 0; i < n; ++i) { 173 for (int i = 0; i < n; ++i) {
174 writeFeature(tt, 174 writeFeature(tt,
175 stream, 175 stream,
176 features[i], 176 features[i],
177 m_forceEnd ? &features[i+1] : 0, 177 m_forceEnd ? &features[i+1] : nullptr,
178 summaryType); 178 summaryType);
179 } 179 }
180 } 180 }
181 181
182 void 182 void