Skip to content

Commit 41e2853

Browse files
committed
Fixed SRombauts#20 MSVC still does not have "noexcept" keyword
1 parent d797873 commit 41e2853

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

include/SQLiteCpp/Exception.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ class Exception : public std::runtime_error
4949
// GCC 4.7 and following have noexcept
5050
#elif defined(__clang__) && __has_feature(cxx_noexcept)
5151
// Clang 3.0 and above have noexcept
52-
#elif defined(_MSC_VER) && (_MSC_VER >= 1700)
53-
// Visual Studio 2012 and above have noexcept
5452
#else
5553
#define noexcept throw()
5654
#endif

0 commit comments

Comments
 (0)