Add missing include file for std::atomic (#3977)

rate_observer class needs the include file because it constructs an
atomic object on 'std::atomic<bool> stopped{ false };'
This commit is contained in:
Thiago Silva 2022-10-20 09:38:37 -03:00 committed by GitHub
commit e578be151d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
#include <nano/lib/stats.hpp>
#include <atomic>
#include <chrono>
#include <string>
#include <thread>