]> granicus.if.org Git - clang/commit
Remove errors were if statements were incorrectly put on a single line.
authorDaniel Jasper <djasper@google.com>
Wed, 16 Jan 2013 07:02:34 +0000 (07:02 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 16 Jan 2013 07:02:34 +0000 (07:02 +0000)
commit55b08e769f05987942c307fde8eb168df01e504f
treea97d048468c9595791183857f27a9381685ea861
parent05a10ff30bd7c93f689c002963e6ba536e83904a
Remove errors were if statements were incorrectly put on a single line.

Before: if (a)  // This comment confused clang-format f();
After:  if (a)  // No more confusion
          f();

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172600 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
unittests/Format/FormatTest.cpp