<div dir="auto">Please never assume anything is obvious.<div dir="auto"><br></div><div dir="auto">In future please use explanatory commit messages so the reader doesn't have to do archaeology to understand.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue., Aug. 20, 2019, 6:18 a.m. Mikhail Maltsev via libcxx-commits, <<a href="mailto:libcxx-commits@lists.llvm.org">libcxx-commits@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: miyuki<br>
Date: Tue Aug 20 03:19:55 2019<br>
New Revision: 369364<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=369364&view=rev" rel="noreferrer noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=369364&view=rev</a><br>
Log:<br>
[libcxx] Fix build breakage on mips<br>
<br>
Fixes <a href="https://bugs.llvm.org/show_bug.cgi?id=43011" rel="noreferrer noreferrer" target="_blank">https://bugs.llvm.org/show_bug.cgi?id=43011</a> caused by<br>
<a href="https://reviews.llvm.org/D63284" rel="noreferrer noreferrer" target="_blank">https://reviews.llvm.org/D63284</a>.<br>
<br>
Committing as obvious.<br>
<br>
Modified:<br>
    libcxx/trunk/include/__locale<br>
<br>
Modified: libcxx/trunk/include/__locale<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__locale?rev=369364&r1=369363&r2=369364&view=diff" rel="noreferrer noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__locale?rev=369364&r1=369363&r2=369364&view=diff</a><br>
==============================================================================<br>
--- libcxx/trunk/include/__locale (original)<br>
+++ libcxx/trunk/include/__locale Tue Aug 20 03:19:55 2019<br>
@@ -409,7 +409,7 @@ public:<br>
     static const mask xdigit = _ISxdigit;<br>
     static const mask blank  = _ISblank;<br>
 #if defined(__mips__)<br>
-    static const mask __regex_word = static_cast<char_class_type>(_ISbit(15));<br>
+    static const mask __regex_word = static_cast<mask>(_ISbit(15));<br>
 #else<br>
     static const mask __regex_word = 0x80;<br>
 #endif<br>
<br>
<br>
_______________________________________________<br>
libcxx-commits mailing list<br>
<a href="mailto:libcxx-commits@lists.llvm.org" target="_blank" rel="noreferrer">libcxx-commits@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/libcxx-commits" rel="noreferrer noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/libcxx-commits</a><br>
</blockquote></div>