Merge pull request #9527

ced5b04 tests: fix missing <thread> includes (tobtoht)
This commit is contained in:
luigi1111 2024-12-23 10:44:01 -05:00
commit 28302956d3
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
2 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#include <boost/thread/mutex.hpp> #include <boost/thread/mutex.hpp>
#include <condition_variable> #include <condition_variable>
#include <mutex> #include <mutex>
#include <thread>
#include "gtest/gtest.h" #include "gtest/gtest.h"

View File

@ -36,6 +36,7 @@
#include "cryptonote_protocol/cryptonote_protocol_handler.h" #include "cryptonote_protocol/cryptonote_protocol_handler.h"
#include "cryptonote_protocol/cryptonote_protocol_handler.inl" #include "cryptonote_protocol/cryptonote_protocol_handler.inl"
#include <condition_variable> #include <condition_variable>
#include <thread>
#define MAKE_IPV4_ADDRESS(a,b,c,d) epee::net_utils::ipv4_network_address{MAKE_IP(a,b,c,d),0} #define MAKE_IPV4_ADDRESS(a,b,c,d) epee::net_utils::ipv4_network_address{MAKE_IP(a,b,c,d),0}
#define MAKE_IPV4_ADDRESS_PORT(a,b,c,d,e) epee::net_utils::ipv4_network_address{MAKE_IP(a,b,c,d),e} #define MAKE_IPV4_ADDRESS_PORT(a,b,c,d,e) epee::net_utils::ipv4_network_address{MAKE_IP(a,b,c,d),e}