fix: macro mistake

This commit is contained in:
Haibo 2018-11-11 03:04:11 +08:00 committed by Nomango
parent f4cadddce4
commit 0bcaf2fa04
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@
#include <algorithm> #include <algorithm>
#if _MSC_VER >= 1900 #if _MSC_VER >= 1900 // >= Visual Studio 2015
# define E2D_NOEXCEPT noexcept # define E2D_NOEXCEPT noexcept
#else #else
# define E2D_NOEXCEPT throw() # define E2D_NOEXCEPT throw()

View File

@ -31,8 +31,8 @@
#ifndef _MSC_VER #ifndef _MSC_VER
# error 仅支持在 MSVC 环境下编译 # error 仅支持在 MSVC 环境下编译
#elif _MSC_VER < 1700 #elif _MSC_VER < 1800
# error Easy2D 不支持 Visual Studio 2012 以下版本 # error Easy2D 不支持 Visual Studio 2013 以下版本
#endif #endif