Skip to content
Snippets Groups Projects
Commit 5337d2d0 authored by bfierz's avatar bfierz Committed by Derek Mauro
Browse files

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

parent 7fda0996
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment