diff options
author | Louis Dionne <ldionne.2@gmail.com> | 2021-04-20 12:03:32 -0400 |
---|---|---|
committer | Louis Dionne <ldionne.2@gmail.com> | 2021-04-20 12:03:32 -0400 |
commit | 4cd6ca102a94e1b64ba3f940cc26b4d7b2b82964 (patch) | |
tree | 4cbdc6cd0658a287902c68c820dceb0e3c96e567 /libcxx/src/system_error.cpp | |
parent | 620fdb9671d0609c43cad86d38176586d7a2b157 (diff) | |
download | llvm-4cd6ca102a94e1b64ba3f940cc26b4d7b2b82964.zip llvm-4cd6ca102a94e1b64ba3f940cc26b4d7b2b82964.tar.gz llvm-4cd6ca102a94e1b64ba3f940cc26b4d7b2b82964.tar.bz2 |
[libc++] NFC: Normalize `#endif //` comment indentation
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()); } |