We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77c0121 + 6b74037 commit c65b308Copy full SHA for c65b308
include/bitcoin/protocol/settings.hpp
@@ -31,6 +31,8 @@ namespace protocol {
31
/// Common protocol configuration settings, properties not thread safe.
32
struct BCP_API settings
33
{
34
+ DEFAULT_COPY_MOVE_DESTRUCT(settings);
35
+
36
settings() NOEXCEPT;
37
settings(uint32_t send_high_water, uint32_t receive_high_water) NOEXCEPT;
38
test/test.hpp
@@ -38,11 +38,6 @@
#define TEST_PATH \
39
TEST_DIRECTORY + "/" + TEST_NAME
40
41
-#ifdef _MSC_VER
42
- #define NO_GLOBAL_INIT_CALLS 26426
43
- #define NO_UNUSED_LOCAL_SMART_PTR 26414
44
-#endif
45
-
46
#ifdef _MSC_VER
47
BC_DISABLE_WARNING(NO_ARRAY_INDEXING)
48
BC_DISABLE_WARNING(NO_GLOBAL_INIT_CALLS)
0 commit comments