From 9495d1feae1cf946eab80d6df6b7bee39aaa7abf Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Wed, 27 Nov 2019 11:58:13 +0100 Subject: [PATCH] Ignore warning C4910 on Windows warning C4910: '__declspec(dllexport)' and 'extern' are incompatible on an explicit instantiation --- libsrc/core/ngcore_api.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libsrc/core/ngcore_api.hpp b/libsrc/core/ngcore_api.hpp index 9e21847d..b6412157 100644 --- a/libsrc/core/ngcore_api.hpp +++ b/libsrc/core/ngcore_api.hpp @@ -28,6 +28,9 @@ // bool-int conversion #pragma warning(disable:4800) +// '__declspec(dllexport)' and 'extern' are incompatible on an explicit instantiation +#pragma warning(disable:4910) + #endif // WIN32