forked from OSchip/llvm-project
[NFC][TableGen] Fix some clang-tidy warnings
This commit is contained in:
parent
eed45b5fa2
commit
c835b5cc1d
|
@ -135,8 +135,8 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) {
|
|||
|
||||
OS << "//////////\n";
|
||||
OS << "// Options\n\n";
|
||||
for (unsigned i = 0, e = Opts.size(); i != e; ++i) {
|
||||
const Record &R = *Opts[i];
|
||||
for (unsigned I = 0, E = Opts.size(); I != E; ++I) {
|
||||
const Record &R = *Opts[I];
|
||||
|
||||
// Start a single option entry.
|
||||
OS << "OPTION(";
|
||||
|
|
Loading…
Reference in New Issue