forked from OSchip/llvm-project
Attempt to fix build bots after r299638.
llvm-svn: 299645
This commit is contained in:
parent
d41c5ffc3e
commit
e228f68811
|
@ -1,8 +1,8 @@
|
|||
// RUN: %check_clang_tidy %s misc-forwarding-reference-overload %t
|
||||
// RUN: %check_clang_tidy %s misc-forwarding-reference-overload %t -- -- -std=c++14
|
||||
|
||||
namespace std {
|
||||
template <bool B, class T = void>
|
||||
struct enable_if {};
|
||||
struct enable_if { typedef T type; };
|
||||
|
||||
template <class T>
|
||||
struct enable_if<true, T> { typedef T type; };
|
||||
|
|
Loading…
Reference in New Issue