From e578be151da544d8b6dfc4bed14c5f2c5f29141f Mon Sep 17 00:00:00 2001 From: Thiago Silva <82097354+thsfs@users.noreply.github.com> Date: Thu, 20 Oct 2022 09:38:37 -0300 Subject: [PATCH] Add missing include file for std::atomic (#3977) rate_observer class needs the include file because it constructs an atomic object on 'std::atomic stopped{ false };' --- nano/test_common/rate_observer.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/nano/test_common/rate_observer.hpp b/nano/test_common/rate_observer.hpp index 457613b917..0800a5a645 100644 --- a/nano/test_common/rate_observer.hpp +++ b/nano/test_common/rate_observer.hpp @@ -2,6 +2,7 @@ #include +#include #include #include #include