llvm-project/clang/lib/Format
Daniel Jasper 5c9e3cdb6d clang-format: Fix bug in style option AlwaysBreakTemplateDeclarations.
Before:
  template <template <typename>
            class Fooooooo, template <typename>
            class Baaaaaaar>
  struct C {};

After:
  template <template <typename> class Fooooooo,
            template <typename> class Baaaaaaar>
  struct C {};

llvm-svn: 190747
2013-09-14 08:13:22 +00:00
..
BreakableToken.cpp Calculate and store ColumnWidth instead of CodePointCount in FormatTokens. 2013-09-10 09:38:25 +00:00
BreakableToken.h Handle zero-width and double-width characters in string literals and comments. 2013-09-05 14:08:34 +00:00
CMakeLists.txt clang-format: Add column layout formatting for braced lists 2013-08-22 15:00:41 +00:00
ContinuationIndenter.cpp clang-format: Fix incorrect enum parsing / layouting. 2013-09-13 09:20:45 +00:00
ContinuationIndenter.h Correctly calculate OriginalColumn after multi-line tokens. 2013-09-10 12:29:48 +00:00
Encoding.h Handle zero-width and double-width characters in string literals and comments. 2013-09-05 14:08:34 +00:00
Format.cpp clang-format: Fix incorrect enum parsing / layouting. 2013-09-13 09:20:45 +00:00
FormatToken.cpp clang-format: Fix incorrect enum parsing / layouting. 2013-09-13 09:20:45 +00:00
FormatToken.h Calculate and store ColumnWidth instead of CodePointCount in FormatTokens. 2013-09-10 09:38:25 +00:00
Makefile
TokenAnnotator.cpp clang-format: Fix bug in style option AlwaysBreakTemplateDeclarations. 2013-09-14 08:13:22 +00:00
TokenAnnotator.h clang-format: Fix comment formatting bugs in nested blocks. 2013-09-06 07:54:20 +00:00
UnwrappedLineParser.cpp clang-format: Detect braced lists in subscript expressions. 2013-09-13 10:55:31 +00:00
UnwrappedLineParser.h clang-format: Fix incorrect enum parsing / layouting. 2013-09-13 09:20:45 +00:00
WhitespaceManager.cpp Support for CR LF newlines. 2013-09-11 12:25:57 +00:00
WhitespaceManager.h Support for CR LF newlines. 2013-09-11 12:25:57 +00:00