From: Craig Topper Date: Sat, 12 Dec 2015 06:30:51 +0000 (+0000) Subject: Minor formatting cleanup. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b820be3afd7ccfbc71f846da50ab40a63763612c;p=clang Minor formatting cleanup. NFC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255428 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 1d1ce44369..2852020e42 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -10591,7 +10591,7 @@ static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, /// \brief Look for '&' in the left or right hand of a '|' expr. static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, - Expr *OrArg) { + Expr *OrArg) { if (BinaryOperator *Bop = dyn_cast(OrArg)) { if (Bop->getOpcode() == BO_And) return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop);