Skip to content

Commit 54a68c0

Browse files
Keenutsbogner
andauthored
Update clang/include/clang/Basic/Attr.td
Co-authored-by: Justin Bogner <[email protected]>
1 parent a0486c1 commit 54a68c0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

clang/include/clang/Basic/Attr.td

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,11 @@ def SharedVar : SubsetSubject<Var,
140140
[{S->hasGlobalStorage() && !S->getTLSKind()}],
141141
"global variables">;
142142

143-
def HLSLInputBuiltin : SubsetSubject<Var, [{S->hasGlobalStorage() &&
144-
S->getStorageClass()==StorageClass::SC_Static &&
145-
S->getType().isConstQualified()}],
146-
"static const globals">;
143+
def HLSLInputBuiltin
144+
: SubsetSubject<Var, [{S->hasGlobalStorage() &&
145+
S->getStorageClass() == StorageClass::SC_Static &&
146+
S->getType().isConstQualified()}],
147+
"static const globals">;
147148

148149
def GlobalVar : SubsetSubject<Var,
149150
[{S->hasGlobalStorage()}], "global variables">;

0 commit comments

Comments
 (0)