llvm-project/clang/lib/Format
Daniel Jasper 61a40782df Fix incorrect line breaking before trailing block comments.
Before, clang-format would happily move a trailing block comment to a
new line, which normally changes the perceived binding of that comment.

E.g., it would move:
void f() { /* comment */
  ...
}
to:
void f() {
  /* comment */
  ...
}

llvm-svn: 183420
2013-06-06 16:08:57 +00:00
..
BreakableToken.cpp UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
BreakableToken.h UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
CMakeLists.txt Unified token breaking logic for strings and block comments. 2013-04-15 14:28:00 +00:00
Encoding.h UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
Format.cpp UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
FormatToken.h UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
Makefile
TokenAnnotator.cpp Fix incorrect line breaking before trailing block comments. 2013-06-06 16:08:57 +00:00
TokenAnnotator.h UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
UnwrappedLineParser.cpp Improve clang-format's error recovery. 2013-05-31 14:56:29 +00:00
UnwrappedLineParser.h Moved FormatToken to a separate header. 2013-06-03 16:45:03 +00:00
WhitespaceManager.cpp The second step in the token refactoring. 2013-05-29 14:47:47 +00:00
WhitespaceManager.h The second step in the token refactoring. 2013-05-29 14:47:47 +00:00