diff --git a/include/tl/expected.hpp b/include/tl/expected.hpp index 2bbde88..a88345b 100644 --- a/include/tl/expected.hpp +++ b/include/tl/expected.hpp @@ -221,7 +221,7 @@ static constexpr unexpect_t unexpect{}; #ifdef TL_EXPECTED_EXCEPTIONS_ENABLED #define TL_EXPECTED_THROW_EXCEPTION(e) throw((e)); -#elif defined(_MSC_VER) +#else #define TL_EXPECTED_THROW_EXCEPTION(e) std::terminate(); #endif