Fixed #20 MSVC still does not have "noexcept" keyword

This commit is contained in:
Sébastien Rombauts 2014-03-28 18:38:47 +01:00
parent d79787359f
commit 41e285347b

View File

@ -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