Skip to content

Commit 8488243

Browse files
spallAaronBallman
andauthored
Update clang/lib/Sema/SemaChecking.cpp
Co-authored-by: Aaron Ballman <[email protected]>
1 parent 14f60af commit 8488243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Sema/SemaChecking.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14018,7 +14018,7 @@ void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
1401814018
}
1401914019

1402014020
void Sema::CheckVectorAccess(const Expr *BaseExpr, const Expr *IndexExpr) {
14021-
const VectorType *VTy = BaseExpr->getType()->getAs<VectorType>();
14021+
const auto *VTy = BaseExpr->getType()->getAs<VectorType>();
1402214022
if (!VTy)
1402314023
return;
1402414024

0 commit comments

Comments
 (0)