clang-format: Improve operator and template recognition.
authorDaniel Jasper <djasper@google.com>
Mon, 28 Jul 2014 13:19:58 +0000 (13:19 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 28 Jul 2014 13:19:58 +0000 (13:19 +0000)
commit6ba1638f0b1062da45933dbdf8538f121cbd0e2c
tree093bc64fa9949b5d076eab6e1c9ec52e027d625f
parent8afad61a9336e8f212ec551a38a1e30411d82ff4
clang-format: Improve operator and template recognition.

Before:
  static_assert(is_convertible < A &&, B > ::value, "AAA");

After:
  static_assert(is_convertible<A &&, B>::value, "AAA");

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