r366010 - Remove extra ';' to silent compiler warning.
Michael Liao via cfe-commits
cfe-commits at lists.llvm.org
Sat Jul 13 12:49:40 PDT 2019
Author: hliao
Date: Sat Jul 13 12:49:39 2019
New Revision: 366010
URL: http://llvm.org/viewvc/llvm-project?rev=366010&view=rev
Log:
Remove extra ';' to silent compiler warning.
- Plus extra style formatting.
Modified:
cfe/trunk/lib/Sema/SemaDecl.cpp
Modified: cfe/trunk/lib/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=366010&r1=366009&r2=366010&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDecl.cpp Sat Jul 13 12:49:39 2019
@@ -11082,7 +11082,8 @@ bool Sema::DeduceVariableDeclarationType
return VDecl->isInvalidDecl();
}
-void Sema::checkNonTrivialCUnionInInitializer(const Expr *Init, SourceLocation Loc) {
+void Sema::checkNonTrivialCUnionInInitializer(const Expr *Init,
+ SourceLocation Loc) {
if (auto *CE = dyn_cast<ConstantExpr>(Init))
Init = CE->getSubExpr();
@@ -11113,7 +11114,7 @@ void Sema::checkNonTrivialCUnionInInitia
if (InitType.hasNonTrivialToPrimitiveCopyCUnion())
checkNonTrivialCUnion(InitType, Loc, NTCUC_CopyInit, NTCUK_Copy);
}
-};
+}
namespace {
More information about the cfe-commits
mailing list