diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-10 21:20:09 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-10 21:20:09 +0000 |
commit | 76bb5cabfa33371a8b3920fc4bc6b53c46478ea6 (patch) | |
tree | 4d169b2b158fdd1c77c6042a0a84d18b347040c5 /clang/lib/Sema/SemaExprCXX.cpp | |
parent | 5a72a23a70bf2a673ee00e51478335e10cb3d0f8 (diff) | |
download | bcm5719-llvm-76bb5cabfa33371a8b3920fc4bc6b53c46478ea6.tar.gz bcm5719-llvm-76bb5cabfa33371a8b3920fc4bc6b53c46478ea6.zip |
Remove redundant semicolons which are null statements.
llvm-svn: 163546
Diffstat (limited to 'clang/lib/Sema/SemaExprCXX.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExprCXX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExprCXX.cpp b/clang/lib/Sema/SemaExprCXX.cpp index 0905607e720..dc5fc284dca 100644 --- a/clang/lib/Sema/SemaExprCXX.cpp +++ b/clang/lib/Sema/SemaExprCXX.cpp @@ -413,7 +413,7 @@ Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc, /// Retrieve the UuidAttr associated with QT. static UuidAttr *GetUuidAttrOfType(QualType QT) { // Optionally remove one level of pointer, reference or array indirection. - const Type *Ty = QT.getTypePtr();; + const Type *Ty = QT.getTypePtr(); if (QT->isPointerType() || QT->isReferenceType()) Ty = QT->getPointeeType().getTypePtr(); else if (QT->isArrayType()) |