commit | cf5f43ce1fdd4bbade729dc478ea77efc6d807b5 | [log] [tgz] |
---|---|---|
author | Chandler Carruth <chandlerc@gmail.com> | Tue Jun 21 23:26:32 2011 +0000 |
committer | Chandler Carruth <chandlerc@gmail.com> | Tue Jun 21 23:26:32 2011 +0000 |
tree | 4f47d3fd37c20dcf705b6635fbda52a1a20cabe7 | |
parent | 941424b3ff0fdf647e9212a54ac12472a51b8abf [diff] [blame] |
Fix a missing space noticed by matthewbg in code review. llvm-svn: 133577
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 7c1aa9c..661bb1e 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -375,7 +375,7 @@ } void StmtProfiler::VisitBinaryConditionalOperator( - const BinaryConditionalOperator *S){ + const BinaryConditionalOperator *S) { VisitExpr(S); }