Fixed spelling error: __cpluplus → __cplusplus

pull/35/head
Jeffrey Walton 2015-07-27 09:40:36 -04:00
parent 6b2129afb3
commit e40ff65269
1 changed files with 2 additions and 2 deletions

View File

@ -487,11 +487,11 @@ NAMESPACE_END
// ***************** C++11 related ******************** // ***************** 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. // 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 // Also see the warning on the buggy C++11 feature matrix at
// http://stackoverflow.com/a/31642496/608639 // http://stackoverflow.com/a/31642496/608639
#if (_MSC_VER >= 1500) || (__cpluplus >= 201103L) #if (_MSC_VER >= 1600) || (__cplusplus >= 201103L)
# define CRYPTOPP_CXX11 1 # define CRYPTOPP_CXX11 1
#endif #endif