diff --git a/src/stdint.hpp b/src/stdint.hpp index e04e7fc2..dc4d5df1 100644 --- a/src/stdint.hpp +++ b/src/stdint.hpp @@ -69,8 +69,6 @@ typedef unsigned __int64 uint64_t; #else -// To define SIZE_MAX with older compilers -#define __STDC_LIMIT_MACROS #include #endif diff --git a/tests/test_security_curve.cpp b/tests/test_security_curve.cpp index 509a9be1..af25a344 100644 --- a/tests/test_security_curve.cpp +++ b/tests/test_security_curve.cpp @@ -29,6 +29,9 @@ // TODO remove this workaround for handling libsodium/tweetnacl +// To define SIZE_MAX with older compilers +#define __STDC_LIMIT_MACROS + #if defined ZMQ_CUSTOM_PLATFORM_HPP #include "platform.hpp" #else