Skip to content

Commit d8441e2

Browse files
committed
[libc] Fix GPU test build error
This fixes a build error on the AMDGPU buildbot introduced in PR #92172
1 parent f39e75b commit d8441e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libc/src/__support/StringUtil/tables/stdc_errors.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@
1515

1616
namespace LIBC_NAMESPACE {
1717

18-
LIBC_INLINE_VAR constexpr const MsgTable<4> STDC_ERRORS = {
18+
LIBC_INLINE_VAR constexpr const MsgTable<3> STDC_ERRORS = {
1919
MsgMapping(0, "Success"),
2020
MsgMapping(EDOM, "Numerical argument out of domain"),
2121
MsgMapping(ERANGE, "Numerical result out of range"),
22-
MsgMapping(EILSEQ, "Invalid or incomplete multibyte or wide character"),
2322
};
2423

2524
} // namespace LIBC_NAMESPACE

0 commit comments

Comments
 (0)