clang-format: Fix incorrect detection of QT-signals access specifier.
authorDaniel Jasper <djasper@google.com>
Wed, 27 Jul 2016 10:13:24 +0000 (10:13 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 27 Jul 2016 10:13:24 +0000 (10:13 +0000)
commit31343832e708c5db2fc7bfc562d343dcee8f156b
tree718a4a5460ff8d51d25f46d4f00264f5ce2dd1cf
parent57d070e6fd1a8d97501ff72956164cebb84aa04d
clang-format: Fix incorrect detection of QT-signals access specifier.

Before:
  void f() {
  label:
    signals
    .baz();
  }

After:
  void f() {
  label:
    signals.baz();
  }

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