[cfe-commits] r133577 - /cfe/trunk/lib/AST/StmtProfile.cpp

Chandler Carruth chandlerc at gmail.com
Tue Jun 21 16:26:32 PDT 2011


Author: chandlerc
Date: Tue Jun 21 18:26:32 2011
New Revision: 133577

URL: http://llvm.org/viewvc/llvm-project?rev=133577&view=rev
Log:
Fix a missing space noticed by matthewbg in code review.

Modified:
    cfe/trunk/lib/AST/StmtProfile.cpp

Modified: cfe/trunk/lib/AST/StmtProfile.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/StmtProfile.cpp?rev=133577&r1=133576&r2=133577&view=diff
==============================================================================
--- cfe/trunk/lib/AST/StmtProfile.cpp (original)
+++ cfe/trunk/lib/AST/StmtProfile.cpp Tue Jun 21 18:26:32 2011
@@ -375,7 +375,7 @@
 }
 
 void StmtProfiler::VisitBinaryConditionalOperator(
-    const BinaryConditionalOperator *S){
+    const BinaryConditionalOperator *S) {
   VisitExpr(S);
 }
 





More information about the cfe-commits mailing list