comparison data/model/FFTModel.cpp @ 1582:70e172e6cc59 fix-static-analysis

Use nullptr throughout
author Chris Cannam
date Mon, 26 Nov 2018 14:33:41 +0000
parents 0f62bce0f0be
children c9a15ee5dc1d 901f37d32060
comparison
equal deleted inserted replaced
1581:ad5f892c0c4d 1582:70e172e6cc59
73 void 73 void
74 FFTModel::sourceModelAboutToBeDeleted() 74 FFTModel::sourceModelAboutToBeDeleted()
75 { 75 {
76 if (m_model) { 76 if (m_model) {
77 SVDEBUG << "FFTModel[" << this << "]::sourceModelAboutToBeDeleted(" << m_model << ")" << endl; 77 SVDEBUG << "FFTModel[" << this << "]::sourceModelAboutToBeDeleted(" << m_model << ")" << endl;
78 m_model = 0; 78 m_model = nullptr;
79 } 79 }
80 } 80 }
81 81
82 int 82 int
83 FFTModel::getWidth() const 83 FFTModel::getWidth() const