1. 6a21a55 Formatter: The contents of @selector() should be formatted as a selector. by Nico Weber · 12 years ago
  2. 5096a44 Formatter: Get bit tests in ifs right. by Nico Weber · 12 years ago
  3. 60ca75d Allow breaking after the trailing const after a function declaration. by Daniel Jasper · 12 years ago
  4. 2c6cc48 Improve handling of comments in static initializers. by Daniel Jasper · 12 years ago
  5. aab6005 Revert most of r172140. by Nico Weber · 12 years ago
  6. 1661824 Fix a bug where we would move a following line into a comment. by Daniel Jasper · 12 years ago
  7. 1f2b078 Fix parsing error in conditional expressions. by Daniel Jasper · 12 years ago
  8. 48bd7b7 Improve understanding of unary operators. by Daniel Jasper · 12 years ago
  9. df3736a Disable inlining of short ifs in Google style. by Daniel Jasper · 12 years ago
  10. 0df6acd Add option to avoid "bin-packing" of parameters. by Daniel Jasper · 12 years ago
  11. ca547db Add debugging support for split penalties. by Manuel Klimek · 12 years ago
  12. 8fa3799 Use standard llvm Debug.h support for debugging output. by Manuel Klimek · 12 years ago
  13. d881875 Clang Format: Handle missing semicolon by Alexander Kornienko · 12 years ago
  14. 3f8cdbf Calculate the total length of a line up to each token up front. by Daniel Jasper · 12 years ago
  15. cbb6c41 Change the datastructure for UnwrappedLines. by Daniel Jasper · 12 years ago
  16. 6b825c2 Never merge < and ::, as it produces different tokens. by Daniel Jasper · 12 years ago
  17. 55b08e7 Remove errors were if statements were incorrectly put on a single line. by Daniel Jasper · 12 years ago
  18. 1913230 Do not traverse the break-state when we know we cannot break anyway. by Manuel Klimek · 12 years ago
  19. 407a31a Fix formatting of preprocessor directives (incluces, warnings & errors). by Manuel Klimek · 12 years ago
  20. b369c2c Improve operator kind detection in presence of comments. by Daniel Jasper · 12 years ago
  21. 47ea7f6 Fixes various bugs around the keywords class, struct and union. by Manuel Klimek · 12 years ago
  22. 2c7739e Fixes formatting of nested brace initializers. by Manuel Klimek · 12 years ago
  23. 6f5bb2c Make single-line if statements optional. by Daniel Jasper · 12 years ago
  24. fd0ca97 Fix a bug in the line merging. by Daniel Jasper · 12 years ago
  25. 2b9c10b Fix bug that would lead to joining preprocessor directives. by Daniel Jasper · 12 years ago
  26. e0b15ea Put simple preprocessor directives on a single line. by Daniel Jasper · 12 years ago
  27. feb18f5 Put short if statements on a single line. by Daniel Jasper · 12 years ago
  28. 995e820 Refactor datastructure used in clang-format. by Daniel Jasper · 12 years ago
  29. 4abbb53 Improve understanding post increment and decrement. by Daniel Jasper · 12 years ago
  30. a4ae9f3 Custom DiagnosticConsumer parameter of reformat() + silence diagnostics in unit tests. by Alexander Kornienko · 12 years ago
  31. 487f64b Stronger respect the input codes line breaks wrt. comments. by Daniel Jasper · 12 years ago
  32. 1774603 Format unions like structs and classes. by Daniel Jasper · 12 years ago
  33. 4e9008a Always put a space after ",". by Daniel Jasper · 12 years ago
  34. 8134e1e Don't put spaces around hyphens in include paths. by Daniel Jasper · 12 years ago
  35. 4981bd0 Improve identification of c-style casts. by Daniel Jasper · 12 years ago
  36. cd45833 Formatter: Don't insert a space before unary operators after selector names. by Nico Weber · 12 years ago
  37. ea86563 Formatter: Remove debugging junk I accidentally landed in r172333. by Nico Weber · 12 years ago
  38. e8ccc81 Formatter: Prefer breaking before ObjC selector names over breaking at their ':' by Nico Weber · 12 years ago
  39. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  40. b14d1ca Remove unused private field. by Rafael Espindola · 12 years ago
  41. b312314 Fix incorrect comparison operator causing loooong formatting times. by Daniel Jasper · 12 years ago
  42. f681fa8 Formatter: Remove an always-false condition. by Nico Weber · 12 years ago
  43. 774b973 Formatter: Remove a redundant CurrentLineType check. by Nico Weber · 12 years ago
  44. bcfdd26 Formatter: Initial support for formatting Objective-C method expressions. by Nico Weber · 12 years ago
  45. 5e9f91c Formatter: * and & are binary operators before ( and [. by Nico Weber · 12 years ago
  46. 2355ceb Formatter: * and & are binary operators after ) and ]. by Nico Weber · 12 years ago
  47. cc191d1 Formatter: + and - after { are unary operators. by Nico Weber · 12 years ago
  48. 67015ed Formatter: Format ObjC static and instance methods consistently, add a test for that. by Nico Weber · 12 years ago
  49. 6eca03f Fix crashes in UnwrappedLineParser on missing parens. by Manuel Klimek · 12 years ago
  50. d5688cf Fix single-line optimization for ObjC. by Manuel Klimek · 12 years ago
  51. d465843 Fix crash on invalid. by Manuel Klimek · 12 years ago
  52. 606e07e Fix parsing of initializer lists with elaborated type specifier. by Manuel Klimek · 12 years ago
  53. 517e894 Implements pulling simple blocks into a single line. by Manuel Klimek · 12 years ago
  54. 088dab5 Correct spacing around new and delete. by Daniel Jasper · 12 years ago
  55. 276a209 clang-format: a bit nicer error message. by Alexander Kornienko · 12 years ago
  56. 7d19bc2 Improve handling of trailing declaration annotations. by Daniel Jasper · 12 years ago
  57. 7e9bf8c Improved formatting of constructor initializers by Daniel Jasper · 12 years ago
  58. 604eb4c Refactor IndentState into two classes. by Daniel Jasper · 12 years ago
  59. cd52bda Formatter: Put spaces in ObjC method decls in the right place for Google style. by Nico Weber · 12 years ago
  60. 7084823 Formatter: No spaces around '=' in @property lines. by Nico Weber · 12 years ago
  61. 5f500df Formatting: In @implementation etc lines, put a space before protocol lists. by Nico Weber · 12 years ago
  62. f9ea2ed Refactoring the outermost structure of the formatter. by Manuel Klimek · 12 years ago
  63. 81ed2f1 Formatter: Don't put a space in ObjC number literals like @+50 by Nico Weber · 12 years ago
  64. ed91bba Formatter: Add space before '(' in @implemenation, @interface, @protocol lines by Nico Weber · 12 years ago
  65. 94fc6f1 Pull calculation whether a line fits one level up. by Manuel Klimek · 12 years ago
  66. 3f8c7f3 Pulling formatFirstToken one level up. by Manuel Klimek · 12 years ago
  67. c8c8a47 Fixes layout of right braces. by Manuel Klimek · 12 years ago
  68. 3048aea Basic support for diagnostics. by Alexander Kornienko · 12 years ago
  69. 2851c16 Fixes formatting of function calls etc inside an initializer list. by Manuel Klimek · 12 years ago
  70. 36fab8d Do not add newline in empty blocks. by Manuel Klimek · 12 years ago
  71. 46ef852 Improvements to function type and ObjC block formatting. by Daniel Jasper · 12 years ago
  72. bb42bf1 Fix layout of blocks inside statements. by Manuel Klimek · 12 years ago
  73. 5cf7cf3 Improve clang-format's understanding of casts. by Daniel Jasper · 12 years ago
  74. 4c60fc6 Introduce a define to switch on debug output. by Manuel Klimek · 12 years ago
  75. 700e710 Do more error checking for '{}'. by Daniel Jasper · 12 years ago
  76. 880e538 Formatter: Remove unused @-formatting code. by Nico Weber · 12 years ago
  77. b530fa3 Formatter: @optional and @required go on their own line. by Nico Weber · 12 years ago
  78. 50767d8 Formatter: Add support for @implementation. by Nico Weber · 12 years ago
  79. 049c447 Formatter: Make parseObjCUntilAtEnd() actually work. by Nico Weber · 12 years ago
  80. 1abe6ea Formatting: Add support for @protocol. by Nico Weber · 12 years ago
  81. 27d1367 Formatter: Add support for @interface. by Nico Weber · 12 years ago
  82. 526ed11 Enables layouting unwrapped lines around preprocessor directives. by Manuel Klimek · 12 years ago
  83. 3fc0bb7 Only align after assignments on the top level. by Daniel Jasper · 12 years ago
  84. ceb99ab Don't simply give up when exceeding 80cols, choose an "ok" option. by Daniel Jasper · 12 years ago
  85. d64f738 Correctly format wrapped function call parameters in templated functions. by Daniel Jasper · 12 years ago
  86. 043835a Allow comments in the middle of statements to be on their own line. by Daniel Jasper · 12 years ago
  87. 886568d Fix ObjC block declarations. by Daniel Jasper · 12 years ago
  88. 9c837d0 Improve formatting of conditional operators. by Daniel Jasper · 12 years ago
  89. 2db356d Don't break after unary operators. by Daniel Jasper · 12 years ago
  90. cb4d690 Formatter: Format @ literals better. Array and dictionary literals need more work. by Nico Weber · 12 years ago
  91. 765561f Don't put spaces around ##. by Daniel Jasper · 12 years ago
  92. 26f7e78 Change the data structure used in clang-format. by Daniel Jasper · 12 years ago
  93. 6092d4e Formatter: Support @public/@protected/@package/@private. by Nico Weber · 12 years ago
  94. de76854 Fix parsing of variable declarations directly after a class / struct. by Manuel Klimek · 12 years ago
  95. a9ccdd1 Formatter: Add tests for try/catch. Let 'throw' start an expression. by Nico Weber · 12 years ago
  96. d0af4b4 Formatter: Don't put spaces betwen @ and objc keywords. by Nico Weber · 12 years ago
  97. da92771 Small refactoring of the formatter code. by Daniel Jasper · 12 years ago
  98. decf7bc Fix typo. by Nico Weber · 12 years ago
  99. f0ab0a3 s/parseStatement/parseStructuralElement/g in the UnwrappedLineParser. by Manuel Klimek · 12 years ago
  100. cd16238 Reformat clang-formats source code. by Daniel Jasper · 12 years ago