Fix an issue with the formatting of stars in default values.
authorDaniel Jasper <djasper@google.com>
Wed, 6 Feb 2013 10:57:42 +0000 (10:57 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 6 Feb 2013 10:57:42 +0000 (10:57 +0000)
commit8035b0a6ced4dd3f1a0f34e0a027005b53f7753b
tree11989d2bd6fcffdb3f639ba9496629b772c4621b
parent2cff49e026879ad2f0c24de4a2c3168fb83c663e
Fix an issue with the formatting of stars in default values.

Before: void f(int *a = d *e, int b = 0);
After:  void f(int *a = d * e, int b = 0);
llvm-svn: 174500
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp