Attempt to fix build bots after r299638.

llvm-svn: 299645
This commit is contained in:
Gabor Horvath 2017-04-06 12:49:35 +00:00
parent d41c5ffc3e
commit e228f68811
1 changed files with 2 additions and 2 deletions

View File

@ -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; };