From 0a6f571ecb300373030201b407bb894acbf765a0 Mon Sep 17 00:00:00 2001 From: zimmy87 Date: Fri, 16 Apr 2021 10:07:43 -0700 Subject: [PATCH] Update ScheduledExecutor.hpp add initialization of frame_countdown_enabled_ member variable --- AirLib/include/common/common_utils/ScheduledExecutor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AirLib/include/common/common_utils/ScheduledExecutor.hpp b/AirLib/include/common/common_utils/ScheduledExecutor.hpp index b595db7a68..d62cea1be4 100644 --- a/AirLib/include/common/common_utils/ScheduledExecutor.hpp +++ b/AirLib/include/common/common_utils/ScheduledExecutor.hpp @@ -31,7 +31,7 @@ class ScheduledExecutor { callback_ = callback; period_nanos_ = period_nanos; started_ = false; - + frame_countdown_enabled_ = false; } void start()