From f25070d982d7cc9ce89a3e48685b6b81afc8e961 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 5 Nov 2017 22:19:57 +0200 Subject: [PATCH] Disable bind_stdcall_test on non-MSVC as well --- test/bind_stdcall_test.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test/bind_stdcall_test.cpp b/test/bind_stdcall_test.cpp index c9144ae..a009c9a 100644 --- a/test/bind_stdcall_test.cpp +++ b/test/bind_stdcall_test.cpp @@ -1,5 +1,15 @@ #include +#ifndef BOOST_MSVC + +int main() +{ +} + +#else + +#include + #if defined(BOOST_MSVC) #pragma warning(disable: 4786) // identifier truncated in debug info #pragma warning(disable: 4710) // function not inlined @@ -108,3 +118,5 @@ int main() function_test(); return boost::report_errors(); } + +#endif