diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-04-04 01:05:59 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-04-04 01:05:59 +0000 |
commit | 3896bf7453f2c807f2fb3de55b978da433fa5aec (patch) | |
tree | 68ce756b40dd32874329dde77ff92f1fe534e29d /libcxx/include/regex | |
parent | 13fc411e390dcfbb65be20551ee78b6143d121a1 (diff) | |
download | bcm5719-llvm-3896bf7453f2c807f2fb3de55b978da433fa5aec.tar.gz bcm5719-llvm-3896bf7453f2c807f2fb3de55b978da433fa5aec.zip |
Work around recent -Wshadow changes in Clang
llvm-svn: 299407
Diffstat (limited to 'libcxx/include/regex')
-rw-r--r-- | libcxx/include/regex | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcxx/include/regex b/libcxx/include/regex index 42e55e86f45..fe97a63763c 100644 --- a/libcxx/include/regex +++ b/libcxx/include/regex @@ -3957,7 +3957,6 @@ basic_regex<_CharT, _Traits>::__parse_equivalence_class(_ForwardIterator __first if (__temp == __last) __throw_regex_error<regex_constants::error_brack>(); // [__first, __temp) contains all text in [= ... =] - typedef typename _Traits::string_type string_type; string_type __collate_name = __traits_.lookup_collatename(__first, __temp); if (__collate_name.empty()) |