From e228f68811ffe816faaa892b27dafb788393aba8 Mon Sep 17 00:00:00 2001 From: Gabor Horvath Date: Thu, 6 Apr 2017 12:49:35 +0000 Subject: [PATCH] Attempt to fix build bots after r299638. llvm-svn: 299645 --- .../test/clang-tidy/misc-forwarding-reference-overload.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang-tools-extra/test/clang-tidy/misc-forwarding-reference-overload.cpp b/clang-tools-extra/test/clang-tidy/misc-forwarding-reference-overload.cpp index 30e93472e577..b21efa4859f6 100644 --- a/clang-tools-extra/test/clang-tidy/misc-forwarding-reference-overload.cpp +++ b/clang-tools-extra/test/clang-tidy/misc-forwarding-reference-overload.cpp @@ -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 -struct enable_if {}; +struct enable_if { typedef T type; }; template struct enable_if { typedef T type; };