[style] replace NULL with nullptr (#5109)

This commit is contained in:
Jonathan Hui
2020-06-17 22:44:54 -07:00
committed by GitHub
parent 3b362071e5
commit 1326d64a64
209 changed files with 1981 additions and 1906 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ template <typename TimerType> class TestTimer : public TimerType
{
public:
TestTimer(ot::Instance &aInstance)
: TimerType(aInstance, TestTimer::HandleTimerFired, NULL)
: TimerType(aInstance, TestTimer::HandleTimerFired, nullptr)
, mFiredCounter(0)
{
}