llvm-project/clang/lib/Format
Daniel Jasper 70bc87420a Fix bad line break decision.
Before:
if (Intervals[i].getRange().getFirst() < Intervals[i - 1]
                                             .getRange().getLast()) {}

After:
if (Intervals[i].getRange().getFirst() <
    Intervals[i - 1].getRange().getLast()) {}

llvm-svn: 176092
2013-02-26 13:59:14 +00:00
..
CMakeLists.txt Move the token annotator into separate files. 2013-01-29 21:01:14 +00:00
Format.cpp Only keep empty lines in unwrapped lines if they preceed a line comment. 2013-02-26 13:10:34 +00:00
Makefile
TokenAnnotator.cpp Fix bad line break decision. 2013-02-26 13:59:14 +00:00
TokenAnnotator.h Allow breaking between a type and name in variable declarations. 2013-02-24 18:54:32 +00:00
UnwrappedLineParser.cpp Fix crash for incomplete labels in macros. 2013-02-12 20:17:17 +00:00
UnwrappedLineParser.h Move the token annotator into separate files. 2013-01-29 21:01:14 +00:00