From 41e285347bd78e03e2daf2397a73a3cca7b3426a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Fri, 28 Mar 2014 18:38:47 +0100 Subject: [PATCH] Fixed #20 MSVC still does not have "noexcept" keyword --- include/SQLiteCpp/Exception.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/SQLiteCpp/Exception.h b/include/SQLiteCpp/Exception.h index 43b621e..4bf3ede 100644 --- a/include/SQLiteCpp/Exception.h +++ b/include/SQLiteCpp/Exception.h @@ -49,8 +49,6 @@ public: // GCC 4.7 and following have noexcept #elif defined(__clang__) && __has_feature(cxx_noexcept) // Clang 3.0 and above have noexcept -#elif defined(_MSC_VER) && (_MSC_VER >= 1700) -// Visual Studio 2012 and above have noexcept #else #define noexcept throw() #endif