[libcxx-commits] [PATCH] D132946: [SystemZ][z/OS] Account for renamed parameter name (libc++)

Muiez Ahmed via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 30 11:19:58 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rGe1e9961f7692: [SystemZ][z/OS] Account for renamed parameter name (libc++) (authored by muiez).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D132946/new/

https://reviews.llvm.org/D132946

Files:
  libcxx/include/regex


Index: libcxx/include/regex
===================================================================
--- libcxx/include/regex
+++ libcxx/include/regex
@@ -1355,7 +1355,7 @@
 unsigned char __to_lower(unsigned char __c)
 {
 #if defined(__MVS__) && !defined(__NATIVE_ASCII_F)
-    return c & 0xBF;
+    return __c & 0xBF;
 #else
     return __c | 0x20;
 #endif


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132946.456736.patch
Type: text/x-patch
Size: 353 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220830/ce2d515a/attachment.bin>


More information about the libcxx-commits mailing list