clang-format: Fix incorrect pointer detection.
authorDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:23:14 +0000 (06:23 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:23:14 +0000 (06:23 +0000)
commitd0d27aa59b0e7e6851d71da24835597658ccaa8a
treec41857b6bb7be274a29c30eaf9fec18556c3ff8a
parentb559b43802d040888f5cf4931d05fc12a18c8e81
clang-format: Fix incorrect pointer detection.

Before:
  void f() { f(float{1}, a *a); }

After:
  void f() { f(float{1}, a * a); }

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