diff options
author | Vitaly Buka <vitalybuka@google.com> | 2024-01-05 16:58:34 -0800 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2024-01-05 16:58:34 -0800 |
commit | 672bf3af16af61d513c4a109c033c844b0562d54 (patch) | |
tree | b586e9a0747b4218fa71d3179a40428b1b0972e2 /libcxx/src/system_error.cpp | |
parent | 990a2f8f767d5a6e07667cc15a9f5e07ed859c46 (diff) | |
parent | 2652243f19314cf0a7583402d37d28dbae9ec1e6 (diff) | |
download | llvm-672bf3af16af61d513c4a109c033c844b0562d54.zip llvm-672bf3af16af61d513c4a109c033c844b0562d54.tar.gz llvm-672bf3af16af61d513c4a109c033c844b0562d54.tar.bz2 |
[𝘀𝗽𝗿] changes introduced through rebase
Created using spr 1.3.4
[skip ci]
Diffstat (limited to 'libcxx/src/system_error.cpp')
-rw-r--r-- | libcxx/src/system_error.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/system_error.cpp b/libcxx/src/system_error.cpp index 034b73c..f518b48 100644 --- a/libcxx/src/system_error.cpp +++ b/libcxx/src/system_error.cpp @@ -68,7 +68,7 @@ __attribute__((unused)) const char* handle_strerror_r_return(int strerror_return if (new_errno == EINVAL) return ""; - _LIBCPP_ASSERT_UNCATEGORIZED(new_errno == ERANGE, "unexpected error from ::strerror_r"); + _LIBCPP_ASSERT_INTERNAL(new_errno == ERANGE, "unexpected error from ::strerror_r"); // FIXME maybe? 'strerror_buff_size' is likely to exceed the // maximum error size so ERANGE shouldn't be returned. std::abort(); |