Skip to content

Commit 7662d22

Browse files
committed
Remove another {}
1 parent 8936c49 commit 7662d22

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/TableGen/DirectiveEmitter.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,9 @@ class BaseRecord {
176176
// since it will remain unchanged when any potential new spellings
177177
// are added.
178178
Spelling::Value Oldest{"not found", {/*Min=*/INT_MAX, 0}};
179-
for (auto V : getSpellings()) {
179+
for (auto V : getSpellings())
180180
if (V.second.Min < Oldest.second.Min)
181181
Oldest = V;
182-
}
183182
return Oldest.first;
184183
}
185184

0 commit comments

Comments
 (0)