diff --git a/builds/msvc/vs2022/libbitcoin-network.import.props b/builds/msvc/vs2022/libbitcoin-network.import.props index 2f5c4fee..fda00c04 100644 --- a/builds/msvc/vs2022/libbitcoin-network.import.props +++ b/builds/msvc/vs2022/libbitcoin-network.import.props @@ -30,7 +30,7 @@ $(ProjectDir)..\..\..\..\..\libbitcoin-network\include\;%(AdditionalIncludeDirectories) - $(ProjectDir)..\..\..\..\..\libbitcoin-network\include\bitcoin\ssl\;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\..\..\libbitcoin-network\include\bitcoin\network\ssl\;%(AdditionalIncludeDirectories) /bigobj %(AdditionalOptions) BCT_STATIC;%(PreprocessorDefinitions) WOLFSSL_USER_SETTINGS;%(PreprocessorDefinitions) diff --git a/include/bitcoin/node/events.hpp b/include/bitcoin/node/events.hpp index c9256617..f586663e 100644 --- a/include/bitcoin/node/events.hpp +++ b/include/bitcoin/node/events.hpp @@ -19,7 +19,6 @@ #ifndef LIBBITCOIN_NODE_EVENTS_HPP #define LIBBITCOIN_NODE_EVENTS_HPP -#include #include namespace libbitcoin { diff --git a/src/block_arena.cpp b/src/block_arena.cpp index 4ec68c80..f1fda06e 100644 --- a/src/block_arena.cpp +++ b/src/block_arena.cpp @@ -19,7 +19,7 @@ #include #include -#include +#include namespace libbitcoin { namespace node { diff --git a/src/block_memory.cpp b/src/block_memory.cpp index 4ca8249d..276a6404 100644 --- a/src/block_memory.cpp +++ b/src/block_memory.cpp @@ -19,6 +19,7 @@ #include #include +#include namespace libbitcoin { namespace node { diff --git a/src/configuration.cpp b/src/configuration.cpp index 9b602b6d..8d073623 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -18,6 +18,7 @@ */ #include +#include #include namespace libbitcoin { diff --git a/src/error.cpp b/src/error.cpp index 10e18946..000c9b2c 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -18,7 +18,7 @@ */ #include -#include +#include namespace libbitcoin { namespace node { diff --git a/src/settings.cpp b/src/settings.cpp index 4431e763..8f14138f 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -20,6 +20,7 @@ #include #include +#include using namespace bc::system; using namespace bc::network;