Skip to content

Commit 35c6deb

Browse files
committed
Merging r369364:
------------------------------------------------------------------------ r369364 | miyuki | 2019-08-20 12:19:55 +0200 (Tue, 20 Aug 2019) | 6 lines [libcxx] Fix build breakage on mips Fixes https://bugs.llvm.org/show_bug.cgi?id=43011 caused by https://reviews.llvm.org/D63284. Committing as obvious. ------------------------------------------------------------------------ llvm-svn: 369898
1 parent a3a8bf9 commit 35c6deb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__locale

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ public:
409409
static const mask xdigit = _ISxdigit;
410410
static const mask blank = _ISblank;
411411
#if defined(__mips__)
412-
static const mask __regex_word = static_cast<char_class_type>(_ISbit(15));
412+
static const mask __regex_word = static_cast<mask>(_ISbit(15));
413413
#else
414414
static const mask __regex_word = 0x80;
415415
#endif

0 commit comments

Comments
 (0)