1. 526ed11 Enables layouting unwrapped lines around preprocessor directives. by Manuel Klimek · 11 years ago
  2. 3fc0bb7 Only align after assignments on the top level. by Daniel Jasper · 11 years ago
  3. ceb99ab Don't simply give up when exceeding 80cols, choose an "ok" option. by Daniel Jasper · 11 years ago
  4. d64f738 Correctly format wrapped function call parameters in templated functions. by Daniel Jasper · 11 years ago
  5. 043835a Allow comments in the middle of statements to be on their own line. by Daniel Jasper · 11 years ago
  6. 886568d Fix ObjC block declarations. by Daniel Jasper · 11 years ago
  7. 9c837d0 Improve formatting of conditional operators. by Daniel Jasper · 11 years ago
  8. 2db356d Don't break after unary operators. by Daniel Jasper · 11 years ago
  9. cb4d690 Formatter: Format @ literals better. Array and dictionary literals need more work. by Nico Weber · 11 years ago
  10. 765561f Don't put spaces around ##. by Daniel Jasper · 11 years ago
  11. 26f7e78 Change the data structure used in clang-format. by Daniel Jasper · 11 years ago
  12. 6092d4e Formatter: Support @public/@protected/@package/@private. by Nico Weber · 11 years ago
  13. de76854 Fix parsing of variable declarations directly after a class / struct. by Manuel Klimek · 11 years ago
  14. a9ccdd1 Formatter: Add tests for try/catch. Let 'throw' start an expression. by Nico Weber · 11 years ago
  15. d0af4b4 Formatter: Don't put spaces betwen @ and objc keywords. by Nico Weber · 11 years ago
  16. da92771 Small refactoring of the formatter code. by Daniel Jasper · 11 years ago
  17. decf7bc Fix typo. by Nico Weber · 11 years ago
  18. f0ab0a3 s/parseStatement/parseStructuralElement/g in the UnwrappedLineParser. by Manuel Klimek · 11 years ago
  19. cd16238 Reformat clang-formats source code. by Daniel Jasper · 11 years ago
  20. 9cda800 Prefer not to break after assignments. by Daniel Jasper · 11 years ago
  21. 7ad4eff Add style option for number of spaces before trailing comments. by Daniel Jasper · 11 years ago
  22. 7160751 Do not break before "0" in pure virtual function declarations. by Daniel Jasper · 11 years ago
  23. dd5b101 Fix incorrect FIXME. by Manuel Klimek · 11 years ago
  24. c3d0c82 Remove outdated FIXME and add explanation for error handling strategy by Manuel Klimek · 11 years ago
  25. f39f6ff Remove outdated fixme. by Manuel Klimek · 11 years ago
  26. d544c57 Do not ever allow using the full line in preprocessor directives. by Manuel Klimek · 11 years ago
  27. 6cf5814 Fix layouting of single-line-comments preceded by an escaped newline. by Manuel Klimek · 11 years ago
  28. 9541938 Fix layouting of tokens with a leading escaped newline. by Manuel Klimek · 11 years ago
  29. 46a46a2 Put a higher penalty on breaking before "." or "->". by Daniel Jasper · 11 years ago
  30. a5342db Fixes handling of unbalances braces. by Manuel Klimek · 11 years ago
  31. f6fd00b Fixes parsing of hash tokens in the middle of a line. by Manuel Klimek · 11 years ago
  32. c37b4d6 Fixes PR14801 - preprocessor directives shouldn't be indented by Manuel Klimek · 11 years ago
  33. 6f8424b Fixes PR14811: Crash when formatting some macros by Manuel Klimek · 11 years ago
  34. d4397b9 Various fixes to clang-format's macro handling. by Manuel Klimek · 12 years ago
  35. 9bb0d28 Correctly format dereference and address of in array parameters. by Daniel Jasper · 12 years ago
  36. 1f42f11 Let the formatter ignore UnwrappedLines containing errors. by Daniel Jasper · 12 years ago
  37. 060143e Fixes multiple formatting bugs. by Manuel Klimek · 12 years ago
  38. 5eda31e Don't allow line breaks after template parameters. by Daniel Jasper · 12 years ago
  39. ba3d307 Format */& as binary operator if followed by a unary operator. by Daniel Jasper · 12 years ago
  40. a080a18 Fixes use of unescaped newlines when formatting preprocessor directives. by Manuel Klimek · 12 years ago
  41. ef5b9c3 Correctly format pointers and references in casts. by Daniel Jasper · 12 years ago
  42. 1f0754b Understand unary operators after "return" and "case". by Daniel Jasper · 12 years ago
  43. 9a64fb5 Prefer splitting after "template <...>" and fix indentation. by Daniel Jasper · 12 years ago
  44. 723f030 Prefer to break after operators over breaking after "(". by Daniel Jasper · 12 years ago
  45. b99083e Re-sort #include lines using the llvm/utils/sort_includes.py script. by Chandler Carruth · 12 years ago
  46. 5d33440 Understand * and & in ternary expressions. by Daniel Jasper · 12 years ago
  47. 4dc41de Don't break after pointer or reference specifier. by Daniel Jasper · 12 years ago
  48. 1f94f2b Formatter: parse and format inline namespaces like regular namespaces by Dmitri Gribenko · 12 years ago
  49. d7610b8 Let clang-format format itself. by Daniel Jasper · 12 years ago
  50. a4974cf Penalize tokens with a lower parenthesis level than the start of the line. by Daniel Jasper · 12 years ago
  51. cf225b6 Align RHS after assignments and return statements. by Daniel Jasper · 12 years ago
  52. f6aef6a Fix formatting over overloaded operators. by Daniel Jasper · 12 years ago
  53. e2c7acf Take operator precedence into account when splitting lines. by Daniel Jasper · 12 years ago
  54. 00d5a04 libFormat: Teach the *& usage heuristic that "return" starts a rhs too. by Nico Weber · 12 years ago
  55. b23ae0c format: Handle #import as include directive too. by Nico Weber · 12 years ago
  56. cd1a32b clang-format: No spaces around directory specifiers by Daniel Jasper · 12 years ago
  57. 5f04ef5 Fix typo. by Fariborz Jahanian · 12 years ago
  58. a324a0e Basic support for formatting for-loops. by Daniel Jasper · 12 years ago
  59. 675d2e3 Use OperatorPrecedence.h in clang-format by Daniel Jasper · 12 years ago
  60. 98e6b4a Formatting fixes for PR14680 by Daniel Jasper · 12 years ago
  61. 154120c Add objective-C style formatting to clang format and by Fariborz Jahanian · 12 years ago
  62. 1321eb5 Better support for constructor initializers. by Daniel Jasper · 12 years ago
  63. 9a0b494 Add basic support for splitting before function calls if it can't be avoided. by Daniel Jasper · 12 years ago
  64. 05b1ac8 Fix several formatting problems. by Daniel Jasper · 12 years ago
  65. 8b39c66 Addi formatting tests for pointer template parameters. by Daniel Jasper · 12 years ago
  66. 56e49c5 Clang-format: error recovery for access specifiers by Alexander Kornienko · 12 years ago
  67. 422daa1 Appease -Wnon-virtual-dtor by Matt Beaumont-Gay · 12 years ago
  68. 469a21b Clang-format: extracted FormatTokenSource from UnwrappedLineParser. by Alexander Kornienko · 12 years ago
  69. c74e279 Small tweaks to clang-format. by Daniel Jasper · 12 years ago
  70. 1575731 Clang-format: IndentCaseLabels option, proper namespace handling by Alexander Kornienko · 12 years ago
  71. a3a2b3a Clang-format: detect unbalanced braces. by Alexander Kornienko · 12 years ago
  72. d56a737 Improve clang-format's handling of unary operators. by Daniel Jasper · 12 years ago
  73. 3b5943f "<<" alignment for clang-format. by Daniel Jasper · 12 years ago
  74. dfbb319 Remove bad and useless enum to bool conversion. by Daniel Jasper · 12 years ago
  75. 2e97cfc Clang-format: parse for and while loops by Alexander Kornienko · 12 years ago
  76. 33182dd Indentation fixes for clang-format. by Daniel Jasper · 12 years ago
  77. 720ffb6 Follow-up to r169286, addresses comments in http://llvm-reviews.chandlerc.com/D164#comment-4 : comments and a method rename by Alexander Kornienko · 12 years ago
  78. 112fb27 Small tweaks to automatic formatting. by Daniel Jasper · 12 years ago
  79. accb0b0 Add missing destructors found with -Wnon-virtual-dtor. by Daniel Jasper · 12 years ago
  80. cff563c Error recovery part 2 by Alexander Kornienko · 12 years ago
  81. 393b008 Clang-format error recovery part 1 by Alexander Kornienko · 12 years ago
  82. 2040915 Make parenthesis counting and aligning a bit saner. by Daniel Jasper · 12 years ago
  83. a166e73 Enum formatting implementation by Alexander Kornienko · 12 years ago
  84. 8822d3a Small fixes to unary operator recognition and handling of include directives. by Daniel Jasper · 12 years ago
  85. a88bb45 Replace workarounds with correct fixes. by Daniel Jasper · 12 years ago
  86. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  87. 0be4b36 Fixes a compile warning and crash in the tests. by Manuel Klimek · 12 years ago
  88. 12feb12 libclangFormat is not libclangTooling, but it depends on it. by Benjamin Kramer · 12 years ago
  89. bac016b Initial version of formatting library. by Daniel Jasper · 12 years ago