clang-format: Fix incorrect binary operator detection.
authorDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:23:05 +0000 (06:23 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:23:05 +0000 (06:23 +0000)
commit3ade3be2a1e97fdac987638cf9470930f61f49d5
treeb0b19b33e5294057bb8e371a8ab9608011535002
parent71e50af675c12197ebaf8d2782e8a9a59c428e29
clang-format: Fix incorrect binary operator detection.

Before:
  int x = f(* + [] {});

After:
  int x = f(*+[] {});

llvm-svn: 285671
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp