llvm-project/clang/lib/Format
Daniel Jasper b715087278 clang-format: Improve recovery from enums with errors.
Before:
  namespace n {
  enum Type {
    One,
    Two, // missing };
    int i;
  } void g() {
  }

After:
  namespace n {
  enum Type {
    One,
    Two, // missing };
    int i;
  }
  void g() {}

llvm-svn: 189662
2013-08-30 10:10:19 +00:00
..
BreakableToken.cpp Revert r187935 "Support for double width characters." 2013-08-08 02:19:56 +00:00
BreakableToken.h Reformat clang-format's source files after r185822 and others. 2013-07-08 14:34:09 +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 indentation. 2013-08-30 08:29:25 +00:00
ContinuationIndenter.h Better support for multiline string literals (including C++11 raw string literals). 2013-08-29 17:32:57 +00:00
Encoding.h Reformat clang-format's source files after r185822 and others. 2013-07-08 14:34:09 +00:00
Format.cpp Better support for multiline string literals (including C++11 raw string literals). 2013-08-29 17:32:57 +00:00
FormatToken.cpp clang-format: Fix bug in column layout. 2013-08-27 08:43:47 +00:00
FormatToken.h Better support for multiline string literals (including C++11 raw string literals). 2013-08-29 17:32:57 +00:00
Makefile
TokenAnnotator.cpp Better support for multiline string literals (including C++11 raw string literals). 2013-08-29 17:32:57 +00:00
TokenAnnotator.h clang-format: Revamp builder-type call formatting. 2013-08-27 11:09:05 +00:00
UnwrappedLineParser.cpp clang-format: Improve recovery from enums with errors. 2013-08-30 10:10:19 +00:00
UnwrappedLineParser.h clang-format: Add more options to namespace indentation. 2013-07-31 23:16:02 +00:00
WhitespaceManager.cpp clang-format: Fix infinite loop in macro special case. 2013-08-28 09:07:32 +00:00
WhitespaceManager.h Reformat clang-format's source files after r185822 and others. 2013-07-08 14:34:09 +00:00