llvm-project/clang/unittests/Format
Daniel Jasper 8835a32078 clang-format: Fix overloaded operator edge case.
Before:
  template <class F>
  void Call(F f) {
    f.template operator() <int>();
  }

After:
  template <class F>
  void Call(F f) {
    f.template operator()<int>();
  }

llvm-svn: 220202
2014-10-20 13:56:30 +00:00
..
CMakeLists.txt clang-format: Basic support for Java. 2014-09-15 11:21:46 +00:00
FormatTest.cpp clang-format: Fix overloaded operator edge case. 2014-10-20 13:56:30 +00:00
FormatTestJS.cpp clang-format: [JS] Support AllowShortFunctionsOnASingleLine. 2014-09-30 17:57:06 +00:00
FormatTestJava.cpp clang-format: [Java] Don't break immediately after "throws". 2014-10-17 13:36:14 +00:00
FormatTestProto.cpp clang-format: [proto] Understand text-format nesting without : 2014-08-15 05:00:35 +00:00
FormatTestUtils.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00