Commit 46913216 by Derek Mauro Committed by Copybara-Service

Enforce Visual Studio 2017 (MSVC++ 15.0) minumum

PiperOrigin-RevId: 483972593
Change-Id: I5358871cdf825bbfae65bf9f5872c4fd56005fb7
parent 2fc358da
...@@ -44,10 +44,10 @@ ...@@ -44,10 +44,10 @@
// Toolchain Check // Toolchain Check
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// We support MSVC++ 14.0 update 2 and later. // We support Visual Studio 2017 (MSVC++ 15.0) and later.
// This minimum will go up. // This minimum will go up.
#if defined(_MSC_FULL_VER) && _MSC_FULL_VER < 190023918 && !defined(__clang__) #if defined(_MSC_VER) && _MSC_VER < 1910 && !defined(__clang__)
#error "This package requires Visual Studio 2015 Update 2 or higher." #error "This package requires Visual Studio 2017 (MSVC++ 15.0) or higher."
#endif #endif
// We support gcc 5 and later. // We support gcc 5 and later.
......
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