Skip to content
Snippets Groups Projects
Commit 7eb92925 authored by Saleem Abdulrasool's avatar Saleem Abdulrasool
Browse files

Basic: tweak whitespace in Attr.td

Separate two class definitions that had been merged into a single line.  NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239878 91177308-0d34-0410-b5e6-96231b3b80d8
parent bcf948a7
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,8 @@ class CXX11<string namespace, string name, int version = 1> ...@@ -195,7 +195,8 @@ class CXX11<string namespace, string name, int version = 1>
: Spelling<name, "CXX11"> { : Spelling<name, "CXX11"> {
string Namespace = namespace; string Namespace = namespace;
int Version = version; int Version = version;
} class Keyword<string name> : Spelling<name, "Keyword">; }
class Keyword<string name> : Spelling<name, "Keyword">;
class Pragma<string namespace, string name> : Spelling<name, "Pragma"> { class Pragma<string namespace, string name> : Spelling<name, "Pragma"> {
string Namespace = namespace; string Namespace = namespace;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment