Mercurial > hg > svcore
diff transform/TransformFactory.cpp @ 1582:70e172e6cc59 fix-static-analysis
Use nullptr throughout
author | Chris Cannam |
---|---|
date | Mon, 26 Nov 2018 14:33:41 +0000 |
parents | 9c14dee72329 |
children | 5f8fbbde08ff |
line wrap: on
line diff
--- a/transform/TransformFactory.cpp Mon Nov 26 13:51:36 2018 +0000 +++ b/transform/TransformFactory.cpp Mon Nov 26 14:33:41 2018 +0000 @@ -55,13 +55,13 @@ { SVDEBUG << "TransformFactory::deleteInstance called" << endl; delete m_instance; - m_instance = 0; + m_instance = nullptr; } TransformFactory::TransformFactory() : m_transformsPopulated(false), m_uninstalledTransformsPopulated(false), - m_thread(0), + m_thread(nullptr), m_exiting(false), m_populatingSlowly(false) { @@ -790,7 +790,7 @@ if (rate == 0) rate = 44100.0; QString pluginId = t.getPluginIdentifier(); - Vamp::PluginBase *plugin = 0; + Vamp::PluginBase *plugin = nullptr; if (t.getType() == Transform::FeatureExtraction) {