forked from OSchip/llvm-project
clean up `-Wmisleading-indentation` warning
Clean up the misleading indentation warning from GCC 6. NFC llvm-svn: 290788
This commit is contained in:
parent
aea60846c4
commit
94865f9ab0
|
@ -3058,9 +3058,9 @@ parse_unnamed_type_name(const char* first, const char* last, C& db)
|
|||
}
|
||||
if (t0 == last || *t0 != 'E')
|
||||
{
|
||||
if(!db.names.empty())
|
||||
if (!db.names.empty())
|
||||
db.names.pop_back();
|
||||
return first;
|
||||
return first;
|
||||
}
|
||||
++t0;
|
||||
if (t0 == last)
|
||||
|
|
Loading…
Reference in New Issue