diff options
author | Mikhail Maltsev <mikhail.maltsev@arm.com> | 2019-08-20 10:19:55 +0000 |
---|---|---|
committer | Mikhail Maltsev <mikhail.maltsev@arm.com> | 2019-08-20 10:19:55 +0000 |
commit | a83220c6f2ece2ca5f1ef9854fc95c033364d04b (patch) | |
tree | 47948ae4ff4b6a575a0b50b2eb4ef74a3d52b409 /libcxx/include | |
parent | 6540e55067e30c81987151f311af0bf69da2b17c (diff) | |
download | bcm5719-llvm-a83220c6f2ece2ca5f1ef9854fc95c033364d04b.tar.gz bcm5719-llvm-a83220c6f2ece2ca5f1ef9854fc95c033364d04b.zip |
[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: 369364
Diffstat (limited to 'libcxx/include')
-rw-r--r-- | libcxx/include/__locale | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__locale b/libcxx/include/__locale index d382e4d8a94..2b6982fc681 100644 --- a/libcxx/include/__locale +++ b/libcxx/include/__locale @@ -409,7 +409,7 @@ public: static const mask xdigit = _ISxdigit; static const mask blank = _ISblank; #if defined(__mips__) - static const mask __regex_word = static_cast<char_class_type>(_ISbit(15)); + static const mask __regex_word = static_cast<mask>(_ISbit(15)); #else static const mask __regex_word = 0x80; #endif |