Skip to content

Commit 80b4a25

Browse files
Muiez Ahmedtru
Muiez Ahmed
authored andcommitted
[SystemZ][z/OS] Account for renamed parameter name (libc++)
The following patch (https://reviews.llvm.org/D129051) broke z/OS builds by renaming the parameter name. This patch accounts for that change. Differential Revision: https://reviews.llvm.org/D132946 (cherry picked from commit e1e9961)
1 parent 5e1b36c commit 80b4a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/regex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1355,7 +1355,7 @@ inline _LIBCPP_INLINE_VISIBILITY
13551355
unsigned char __to_lower(unsigned char __c)
13561356
{
13571357
#if defined(__MVS__) && !defined(__NATIVE_ASCII_F)
1358-
return c & 0xBF;
1358+
return __c & 0xBF;
13591359
#else
13601360
return __c | 0x20;
13611361
#endif

0 commit comments

Comments
 (0)