use auto for obvious type; NFC

llvm-svn: 256393
This commit is contained in:
Sanjay Patel 2015-12-24 21:11:29 +00:00
parent 91bd48a33a
commit 376c06c2b9
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ struct CounterCoverageMappingBuilder
else
pushRegion(Count, getStart(S));
if (const CaseStmt *CS = dyn_cast<CaseStmt>(S)) {
if (const auto *CS = dyn_cast<CaseStmt>(S)) {
Visit(CS->getLHS());
if (const Expr *RHS = CS->getRHS())
Visit(RHS);