llvm-project/clang/unittests/Format
Daniel Jasper f83834feb1 clang-format: Simplify and improve stop condition for formatting
unaffected lines with incorrect initial indent.

Starting from:
  namespace {
    int i; // There shouldn't be indentation here.
    int j; // <- call clang-format on this line.
  }

Before:
  namespace {
    int i;
    int j;
    }

After:
  namespace {
    int i;
    int j;
  }

llvm-svn: 251824
2015-11-02 20:02:49 +00:00
..
CMakeLists.txt clang-format: Add initial #include sorting capabilities. 2015-09-23 08:30:47 +00:00
FormatTest.cpp Format: support inline namespaces 2015-10-30 05:07:56 +00:00
FormatTestJS.cpp clang-format: [JS] Add goog.setTestOnly to the list of stuff that 2015-10-29 19:05:20 +00:00
FormatTestJava.cpp clang-format/java: Break after annotations on fields in Chromium style. 2015-10-15 16:03:01 +00:00
FormatTestProto.cpp clang-format: [Proto] Handle enum bodies differently. 2015-07-16 14:25:43 +00:00
FormatTestSelective.cpp clang-format: Simplify and improve stop condition for formatting 2015-11-02 20:02:49 +00:00
FormatTestUtils.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Makefile Refactor libTooling to reduce required dependencies. 2014-10-29 18:55:09 +00:00
SortIncludesTest.cpp clang-format: Teach --sort-includes to interleave #include and #import. 2015-10-21 17:13:45 +00:00