From: Chandler Carruth Date: Tue, 21 Jun 2011 23:26:32 +0000 (+0000) Subject: Fix a missing space noticed by matthewbg in code review. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0894976ba1384a34357e333846adedc6a42334fd;p=clang Fix a missing space noticed by matthewbg in code review. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133577 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/StmtProfile.cpp b/lib/AST/StmtProfile.cpp index 7c1aa9c6f7..661bb1e4e6 100644 --- a/lib/AST/StmtProfile.cpp +++ b/lib/AST/StmtProfile.cpp @@ -375,7 +375,7 @@ void StmtProfiler::VisitConditionalOperator(const ConditionalOperator *S) { } void StmtProfiler::VisitBinaryConditionalOperator( - const BinaryConditionalOperator *S){ + const BinaryConditionalOperator *S) { VisitExpr(S); }