Commit 5337d2d0 by bfierz Committed by Derek Mauro

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

parent 7fda0996
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment