diff options
author | kakuty <[email protected]> | 2022-07-31 15:24:20 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-31 15:24:20 +0800 |
commit | 4554d6bb9ed002ea4e0d252a7008b530e0a18df6 (patch) | |
tree | 9afb8823a811acbf10d02bcb25d95af9dacdc8ae | |
parent | 88f2f771f179a3d856ecd0b07a20598bd06ba21d (diff) | |
download | xbyak-4554d6bb9ed002ea4e0d252a7008b530e0a18df6.tar.gz xbyak-4554d6bb9ed002ea4e0d252a7008b530e0a18df6.zip |
Fix error related to XBYAK_NOEXCEPT
The keyword noexcept is not supported before Visual Studio 2015.
-rw-r--r-- | xbyak/xbyak.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index eecea61..9be12b1 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h @@ -118,7 +118,7 @@ #endif #endif -#if (__cplusplus >= 201103) || (defined(_MSC_VER) && _MSC_VER >= 1800) +#if (__cplusplus >= 201103) || (defined(_MSC_VER) && _MSC_VER >= 1900) #undef XBYAK_TLS #define XBYAK_TLS thread_local #define XBYAK_VARIADIC_TEMPLATE |