forked from OSchip/llvm-project
Remove non-printable chars that snuck in back in July; thanks to Yaron Keren for the catch
llvm-svn: 191756
This commit is contained in:
parent
6e96ac600f
commit
ad864049d6
|
@ -748,7 +748,7 @@ struct __find_exactly_one_t_helper <_T1, _Idx, _Head, _Args...> {
|
|||
static constexpr size_t value =
|
||||
std::conditional<
|
||||
std::is_same<_T1, _Head>::value,
|
||||
__find_exactly_one_t_checker<_T1, _Idx, _Args...>,
|
||||
__find_exactly_one_t_checker<_T1, _Idx, _Args...>,
|
||||
__find_exactly_one_t_helper <_T1, _Idx+1, _Args...>
|
||||
>::type::value;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue