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.
2 parents 2ef30aa + 5b50dee commit cb215aeCopy full SHA for cb215ae
llvm/include/llvm/TableGen/DirectiveEmitter.h
@@ -149,9 +149,9 @@ class BaseRecord {
149
150
std::vector<Spelling::Value> getSpellings() const {
151
std::vector<Spelling::Value> List;
152
- llvm::transform(
153
- Def->getValueAsListOfDefs("spellings"), std::back_inserter(List),
154
- [](const Record *R) { return Spelling(R).get(); });
+ llvm::transform(Def->getValueAsListOfDefs("spellings"),
+ std::back_inserter(List),
+ [](const Record *R) { return Spelling(R).get(); });
155
return List;
156
}
157
0 commit comments