From c6e47e10cdd68125d6795b9a34caaf03f7945b30 Mon Sep 17 00:00:00 2001 From: Erich Keane Date: Fri, 3 Aug 2018 13:51:35 +0000 Subject: [PATCH] [NFCI] My attempt to fix a warning in r338886 broke the build! Fix it. Clang format got the best of me... it introduced spaces around something in a table-genned file, so it was interpreted as an array and not a code block. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@338889 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/Attr.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Basic/Attr.td b/include/clang/Basic/Attr.td index 191bfd50f2..7f0417dffe 100644 --- a/include/clang/Basic/Attr.td +++ b/include/clang/Basic/Attr.td @@ -146,7 +146,7 @@ def HasFunctionProto : SubsetSubject(S), false} ], + : SubsetSubject(S), false}], "implicit object parameters">; // A single argument to an attribute -- 2.40.0