Fixes a failed compiler version check for clang-cl, which was detected as an old MSVC. (#95)

This commit is contained in:
bfierz 2018-03-01 21:52:44 +01:00 committed by Derek Mauro
parent 7fda099641
commit 5337d2d0e3

View file

@ -46,7 +46,7 @@
// We support MSVC++ 14.0 update 2 and later.
// This minimum will go up.
#if defined(_MSC_FULL_VER) && _MSC_FULL_VER < 190023918
#if defined(_MSC_FULL_VER) && _MSC_FULL_VER < 190023918 && !defined(__clang__)
#error "This package requires Visual Studio 2015 Update 2 or higher"
#endif