mirror of
https://github.com/espressif/openthread.git
synced 2026-07-08 05:10:25 +00:00
[timer] use function reference (instead of pointer) as timer handler (#5050)
This commit is contained in:
committed by
GitHub
parent
82053cc9db
commit
99a42ccadc
+1
-1
@@ -253,7 +253,7 @@ Interpreter::Interpreter(Instance *aInstance)
|
||||
, mPingHopLimit(0)
|
||||
, mPingAllowZeroHopLimit(false)
|
||||
, mPingIdentifier(0)
|
||||
, mPingTimer(*aInstance, &Interpreter::HandlePingTimer, this)
|
||||
, mPingTimer(*aInstance, Interpreter::HandlePingTimer, this)
|
||||
#if OPENTHREAD_CONFIG_DNS_CLIENT_ENABLE
|
||||
, mResolvingInProgress(0)
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user