llvm-project/clang/lib/Format
Daniel Jasper b67cc423eb Fix comments before labels.
Before:
switch (...) {
  // a
  // b
// c
case first:
  break;
}

After:
switch (...) {
// a
// b
// c
case first:
  break;
}

llvm-svn: 179107
2013-04-09 17:46:55 +00:00
..
CMakeLists.txt Move the token annotator into separate files. 2013-01-29 21:01:14 +00:00
Format.cpp Fix comments before labels. 2013-04-09 17:46:55 +00:00
Makefile
TokenAnnotator.cpp Revamp indentation behavior for complex binary expressions. 2013-04-08 20:33:42 +00:00
TokenAnnotator.h Revamp indentation behavior for complex binary expressions. 2013-04-08 20:33:42 +00:00
UnwrappedLineParser.cpp Again macros without trailing semicolons: don't care about declaration context. 2013-04-09 16:15:19 +00:00
UnwrappedLineParser.h Format a line if a range in its leading whitespace was selected. 2013-03-04 13:43:19 +00:00