Fix indentation for case: // comment.
authorDaniel Jasper <djasper@google.com>
Tue, 19 Mar 2013 18:33:58 +0000 (18:33 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 19 Mar 2013 18:33:58 +0000 (18:33 +0000)
commit2bd32ca92a1782fa2938b49993812750d90c0a9b
treeaa7dc280eb5c7d17263c5a8b61ba2dad8dbee98a
parent6a38438e557b72593889f34f73f06ac8e48809ba
Fix indentation for case: // comment.

Before:
switch (x) {
case 1:
    // Do amazing stuff
    {
  g();
  f();
}
}

After:
switch (x) {
case 1:
  // Do amazing stuff
  {
    g();
    f();
  }
}

llvm-svn: 177420
clang/lib/Format/UnwrappedLineParser.cpp
clang/unittests/Format/FormatTest.cpp