0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 09:47:56 +08:00

test for _MSC_VER before using MSVC specific code

This commit is contained in:
KIU Shueng Chuan 2013-10-05 00:48:52 +08:00
parent d33a3ad0fd
commit 79c2598a08

View File

@ -31,8 +31,10 @@
#include <string>
#if defined _WIN32
# include <crtdbg.h>
# pragma warning(disable:4996)
# if defined _MSC_VER
# include <crtdbg.h>
# pragma warning(disable:4996)
# endif
#else
# include <unistd.h>
# include <signal.h>
@ -249,9 +251,11 @@ void close_zero_linger (void *socket)
void setup_test_environment()
{
#if defined _WIN32
# if defined _MSC_VER
_set_abort_behavior( 0, _WRITE_ABORT_MSG);
_CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE );
_CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDERR );
# endif
#endif
}