llvm-project/clang/lib/Format
Daniel Jasper 5ca9b7141f clang-format: Fix bug in pointer detection
Before:
  for (int i = 0; i* 2 < z; i *= 2) {}
After:
  for (int i = 0; i * 2 < z; i *= 2) {}

llvm-svn: 190546
2013-09-11 20:37:10 +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 Correctly calculate OriginalColumn after multi-line tokens. 2013-09-10 12:29:48 +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 Support for CR LF newlines. 2013-09-11 12:25:57 +00:00
FormatToken.cpp Calculate and store ColumnWidth instead of CodePointCount in FormatTokens. 2013-09-10 09:38:25 +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 pointer detection 2013-09-11 20:37:10 +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: Format typed enums with nested names. 2013-09-06 21:32:35 +00:00
UnwrappedLineParser.h Unbreak build with libc++, whose std::list<T> requires T to be complete. 2013-09-05 18:28:53 +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