forked from OSchip/llvm-project
Fix incorrect code indentation and silence dead store warning due to idiomatic code.
llvm-svn: 137870
This commit is contained in:
parent
29cc642f68
commit
897af91e1a
|
@ -1002,6 +1002,8 @@ void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
|
||||||
Out << (first ? ' ' : ',') << "atomic";
|
Out << (first ? ' ' : ',') << "atomic";
|
||||||
first = false;
|
first = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
(void) first; // Silence dead store warning due to idiomatic code.
|
||||||
Out << " )";
|
Out << " )";
|
||||||
}
|
}
|
||||||
Out << ' ' << PDecl->getType().getAsString(Policy) << ' ' << PDecl;
|
Out << ' ' << PDecl->getType().getAsString(Policy) << ' ' << PDecl;
|
||||||
|
|
Loading…
Reference in New Issue