[PATCH] D25431: [libcxx] Convert Solaris support library to C++ to fix -std=c++11 build

Michał Górny via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 18 10:04:20 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL284493: [solaris] Fix iswxdigit_l() support function prototype (authored by mgorny).

Changed prior to commit:
  https://reviews.llvm.org/D25431?vs=74996&id=75024#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D25431

Files:
  libcxx/trunk/src/support/solaris/xlocale.c


Index: libcxx/trunk/src/support/solaris/xlocale.c
===================================================================
--- libcxx/trunk/src/support/solaris/xlocale.c
+++ libcxx/trunk/src/support/solaris/xlocale.c
@@ -19,7 +19,7 @@
     return isxdigit(__c);
 }
 
-int iswxdigit_l(wchar_t __c, locale_t __l) {
+int iswxdigit_l(wint_t __c, locale_t __l) {
     return isxdigit(__c);
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D25431.75024.patch
Type: text/x-patch
Size: 385 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20161018/892d64ba/attachment.bin>


More information about the cfe-commits mailing list