Ignore warning C4910 on Windows

warning C4910: '__declspec(dllexport)' and 'extern' are incompatible on an explicit instantiation
This commit is contained in:
Matthias Hochsteger 2019-11-27 11:58:13 +01:00
parent a0921a5e7f
commit 9495d1feae

View File

@ -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