Skip to content

Commit b1543a6

Browse files
author
Roger Ferrer Ibanez
committedOct 10, 2017
Remove unneeded typename from test
Differential Revision: https://reviews.llvm.org/D38628 llvm-svn: 315278
1 parent 252dd8b commit b1543a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎libcxx/test/std/utilities/utility/pairs/pair.astuple/tuple_element.fail.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
int main()
1919
{
2020
typedef std::pair<int, short> T;
21-
typename std::tuple_element<2, T>::type foo; // expected-error@utility:* {{Index out of bounds in std::tuple_element<std::pair<T1, T2>>}}
21+
std::tuple_element<2, T>::type foo; // expected-error@utility:* {{Index out of bounds in std::tuple_element<std::pair<T1, T2>>}}
2222
}

‎libcxx/test/std/utilities/variant/variant.helpers/variant_alternative.fail.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828

2929
int main() {
3030
using V = std::variant<int, void *, const void *, long double>;
31-
typename std::variant_alternative<4, V>::type foo; // expected-error@variant:* {{Index out of bounds in std::variant_alternative<>}}
31+
std::variant_alternative<4, V>::type foo; // expected-error@variant:* {{Index out of bounds in std::variant_alternative<>}}
3232
}

0 commit comments

Comments
 (0)
Please sign in to comment.