mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
Fixed #20 MSVC still does not have "noexcept" keyword
This commit is contained in:
parent
d79787359f
commit
41e285347b
@ -49,8 +49,6 @@ public:
|
|||||||
// GCC 4.7 and following have noexcept
|
// GCC 4.7 and following have noexcept
|
||||||
#elif defined(__clang__) && __has_feature(cxx_noexcept)
|
#elif defined(__clang__) && __has_feature(cxx_noexcept)
|
||||||
// Clang 3.0 and above have noexcept
|
// Clang 3.0 and above have noexcept
|
||||||
#elif defined(_MSC_VER) && (_MSC_VER >= 1700)
|
|
||||||
// Visual Studio 2012 and above have noexcept
|
|
||||||
#else
|
#else
|
||||||
#define noexcept throw()
|
#define noexcept throw()
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user