clang-format: Fix incorrect macro call detection.
authorDaniel Jasper <djasper@google.com>
Wed, 21 May 2014 13:08:17 +0000 (13:08 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 21 May 2014 13:08:17 +0000 (13:08 +0000)
commit5ebb2f362501bfe197418f321bb86a093a64f375
tree1ad11141b31da06a40f0df4b81907c996de17cd7
parent38eed1b86d5705fe43f054765f567894dcb773c7
clang-format: Fix incorrect macro call detection.

In:
  struct A {
    A()
        noexcept(....) {}
  };

'A()' is not a macro call.
This fixes llvm.org/PR19814.

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