AppFwk (clang-tidy) : modernize-use-nullptr

This commit is contained in:
Magne Sjaastad
2018-02-18 18:05:08 +01:00
parent 5a2072e6ec
commit 3239c66f54
56 changed files with 170 additions and 170 deletions

View File

@@ -170,7 +170,7 @@ std::pair<CmdFeature*, size_t> CmdFeatureManager::findExistingCmdFeature(const
}
else
{
return std::make_pair(static_cast<CmdFeature*>(NULL), -1);
return std::make_pair(static_cast<CmdFeature*>(nullptr), -1);
}
}
@@ -191,7 +191,7 @@ caf::CmdFeature* CmdFeatureManager::commandFeature(const std::string& commandId)
return item;
}
return NULL;
return nullptr;
}
//--------------------------------------------------------------------------------------------------