diff options
Diffstat (limited to 'libcxx/src/system_error.cpp')
-rw-r--r-- | libcxx/src/system_error.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/src/system_error.cpp b/libcxx/src/system_error.cpp index 6d22cb7..a1ea6c4 100644 --- a/libcxx/src/system_error.cpp +++ b/libcxx/src/system_error.cpp @@ -157,7 +157,7 @@ __generic_error_category::message(int ev) const #ifdef _LIBCPP_ELAST if (ev > _LIBCPP_ELAST) return string("unspecified generic_category error"); -#endif // _LIBCPP_ELAST +#endif // _LIBCPP_ELAST return __do_message::message(ev); } @@ -189,7 +189,7 @@ __system_error_category::message(int ev) const #ifdef _LIBCPP_ELAST if (ev > _LIBCPP_ELAST) return string("unspecified system_category error"); -#endif // _LIBCPP_ELAST +#endif // _LIBCPP_ELAST return __do_message::message(ev); } @@ -199,7 +199,7 @@ __system_error_category::default_error_condition(int ev) const noexcept #ifdef _LIBCPP_ELAST if (ev > _LIBCPP_ELAST) return error_condition(ev, system_category()); -#endif // _LIBCPP_ELAST +#endif // _LIBCPP_ELAST return error_condition(ev, generic_category()); } |