From e40ff65269f8367226e71caea921dd3c2ab30949 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 27 Jul 2015 09:40:36 -0400 Subject: [PATCH] =?UTF-8?q?Fixed=20spelling=20error:=20=5F=5Fcpluplus=20?= =?UTF-8?q?=E2=86=92=20=5F=5Fcplusplus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index e2529256..ca3bfc45 100644 --- a/config.h +++ b/config.h @@ -487,11 +487,11 @@ NAMESPACE_END // ***************** C++11 related ******************** -// Visual Studio and C++11 language features began at Visual Studio 2012, +// Visual Studio and C++11 language features began at Visual Studio 2010, // https://msdn.microsoft.com/en-us/library/hh567368%28v=vs.110%29.aspx. // Also see the warning on the buggy C++11 feature matrix at // http://stackoverflow.com/a/31642496/608639 -#if (_MSC_VER >= 1500) || (__cpluplus >= 201103L) +#if (_MSC_VER >= 1600) || (__cplusplus >= 201103L) # define CRYPTOPP_CXX11 1 #endif