]> granicus.if.org Git - clang/commit
clang-format: Fix regression introduced by r237565.
authorDaniel Jasper <djasper@google.com>
Mon, 18 May 2015 14:12:24 +0000 (14:12 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 18 May 2015 14:12:24 +0000 (14:12 +0000)
commit513f0c09b40f4474ed6beb4427aa409c94a8e38b
treeb8286e2bf85de3e0c326614cf250bdfd4881128e
parent6338229cf6ca4e8228ea2cdb23899cc1caa543fe
clang-format: Fix regression introduced by r237565.

Before:
  class C : public D {
    SomeClass SC { 2 };
  };

After:
  class C : public D {
    SomeClass SC{2};
  };

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