We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0486c1 commit 54a68c0Copy full SHA for 54a68c0
clang/include/clang/Basic/Attr.td
@@ -140,10 +140,11 @@ def SharedVar : SubsetSubject<Var,
140
[{S->hasGlobalStorage() && !S->getTLSKind()}],
141
"global variables">;
142
143
-def HLSLInputBuiltin : SubsetSubject<Var, [{S->hasGlobalStorage() &&
144
- S->getStorageClass()==StorageClass::SC_Static &&
145
- S->getType().isConstQualified()}],
146
- "static const globals">;
+def HLSLInputBuiltin
+ : SubsetSubject<Var, [{S->hasGlobalStorage() &&
+ S->getStorageClass() == StorageClass::SC_Static &&
+ S->getType().isConstQualified()}],
147
+ "static const globals">;
148
149
def GlobalVar : SubsetSubject<Var,
150
[{S->hasGlobalStorage()}], "global variables">;
0 commit comments