1. 1ca05cc Fix bug in formatting of nested initializers. by Daniel Jasper · 13 years ago
  2. 83d4e78 Hopefully fix windows build due to non-standard pair implementation. by Daniel Jasper · 13 years ago
  3. 4b86627 Revamp of the basic layouting algorithm in clang-format. by Daniel Jasper · 13 years ago
  4. 8a8ce24 Several improvements to the formatting of static initializers. by Daniel Jasper · 13 years ago
  5. 7b038a2 Don't generate no-op replacements. by Daniel Jasper · 13 years ago
  6. 7a6d09b Move the token annotator into separate files. by Daniel Jasper · 13 years ago
  7. ddaa9be Improve formatting of code with comments. by Daniel Jasper · 13 years ago
  8. f7db433 Allow all parameters on next line for function calls in Chrome. by Daniel Jasper · 13 years ago
  9. 17fdaa4 Split ">>" in "A<B<C> >" in Chromium style. by Daniel Jasper · 13 years ago
  10. 85f16f9 Fix uninitialized error caused by r173801. by Daniel Jasper · 13 years ago
  11. cf33000 Calculate the split penalty upfront. by Daniel Jasper · 13 years ago
  12. bbc8415 Fix a comment and reformat clang-format with clang-format by Daniel Jasper · 13 years ago
  13. 38c11ce Initial support for multiple variable declarations. by Daniel Jasper · 13 years ago
  14. 6a217e1 Reverting changes from r173785 (removing empty lines before "}"). by Daniel Jasper · 13 years ago
  15. aa94a90 Remove empty lines before "}". by Daniel Jasper · 13 years ago
  16. 48c62f9 Fix a bug that would lead to bad line break decisions in for loops. by Daniel Jasper · 13 years ago
  17. d36ef5e Don't put a function's return type on its own line in Google style. by Daniel Jasper · 13 years ago
  18. d2639ef Let clang-format break after a function's return type. by Daniel Jasper · 13 years ago
  19. 65585ed Make continuations in constructor initializers consistent. by Daniel Jasper · 13 years ago
  20. 0b41cbb Initial support for formatting range-based for-loops. by Daniel Jasper · 13 years ago
  21. ca6623b Improve formatting of conditional expressions. by Daniel Jasper · 13 years ago
  22. 20b09ef Several small changes in formatting decisions. by Daniel Jasper · 13 years ago
  23. 4ad4235 Improve indentation after breaking at nested name specifiers. by Daniel Jasper · 13 years ago
  24. 7b5773e9 Avoid confusing identations for multi-parameter functions. by Daniel Jasper · 13 years ago
  25. 7a31af1 Fix some alignment and line break decisions. by Daniel Jasper · 13 years ago
  26. 4579702 Allow breaking after "::" if absolutely necessary. by Daniel Jasper · 13 years ago
  27. 39e2738 Add extra indent for nested calls inside if's. by Daniel Jasper · 13 years ago
  28. a836b90 Don't try to align builder-type continuations on assignments. by Daniel Jasper · 13 years ago
  29. 1565eb3 Don't try to do a hanging ident after assignments. by Daniel Jasper · 13 years ago
  30. c1237a8 Fixes layouting regression and invalid-read. by Manuel Klimek · 13 years ago
  31. 420d7d3 Fix the formatting of pointer/reference types in range-based for loops. by Daniel Jasper · 13 years ago
  32. 43b6548 Removing the penalty for breaking after "=". by Daniel Jasper · 13 years ago
  33. 5b49f47 Fix another regression for pointer types. by Daniel Jasper · 13 years ago
  34. b9c0908 Fix regression in formatting pointer types. by Daniel Jasper · 13 years ago
  35. d33516e Fix segfaults in the formatter. by Manuel Klimek · 13 years ago
  36. e941b16 Add option to allow putting all parameters onto the next line. by Daniel Jasper · 13 years ago
  37. 0a3a3c9 Allow us to better guess the context of an unwrapped line. by Manuel Klimek · 13 years ago
  38. f92f7bc Implements more principled comment parsing. by Manuel Klimek · 13 years ago
  39. 50e7ab7 Let the formatter be more restrictive for breaking around . and -> by Daniel Jasper · 13 years ago
  40. 0b82060 Fix "*" formatting when creating arrays of pointers. by Daniel Jasper · 13 years ago
  41. 304a986 Remove "incorrect" aligning of trailing comments. by Daniel Jasper · 13 years ago
  42. 767c8d3 Formatter: Set MatchingParen for [], to match <>, (), {}. No functionality change. by Nico Weber · 13 years ago
  43. ed272de Formatter: Rename LSquare to Left to make parseSquare() more consistent with the other paren parsing methods. by Nico Weber · 13 years ago
  44. a4fe1c1 Fixes formatting of empty blocks. by Manuel Klimek · 13 years ago
  45. c228619 Fix parsing of templated declarations. by Daniel Jasper · 13 years ago
  46. d41ee2d Fix bug discovered by valgrind. by Daniel Jasper · 13 years ago
  47. da08761 Fixes issues around pulling in the next line in simple if statements. by Manuel Klimek · 13 years ago
  48. 0446896 Reduce penalty for splitting between ")" and ".". by Daniel Jasper · 13 years ago
  49. 997b08c Also align trailing line comments in include directives. by Daniel Jasper · 13 years ago
  50. aa701fa Let the formatter align trailing line comments where possible. by Daniel Jasper · 13 years ago
  51. a5510af Formatter: After case blocks, "break" goes on the same line as the "}", PR14907. by Nico Weber · 13 years ago
  52. 250fe71 Formatter: The contents of @selector() should be formatted as a selector. by Nico Weber · 13 years ago
  53. 80a8276 Formatter: Get bit tests in ifs right. by Nico Weber · 13 years ago
  54. fefb1e6 Allow breaking after the trailing const after a function declaration. by Daniel Jasper · 13 years ago
  55. 11cb81c Improve handling of comments in static initializers. by Daniel Jasper · 13 years ago
  56. 772fbfd Revert most of r172140. by Nico Weber · 13 years ago
  57. 69987d5 Fix a bug where we would move a following line into a comment. by Daniel Jasper · 13 years ago
  58. 8c5fba9 Fix parsing error in conditional expressions. by Daniel Jasper · 13 years ago
  59. a1dc93a Improve understanding of unary operators. by Daniel Jasper · 13 years ago
  60. ced17f8 Disable inlining of short ifs in Google style. by Daniel Jasper · 13 years ago
  61. 9278eb9 Add option to avoid "bin-packing" of parameters. by Daniel Jasper · 13 years ago
  62. 2499810 Add debugging support for split penalties. by Manuel Klimek · 13 years ago
  63. a67a8f0 Calculate the total length of a line up to each token up front. by Daniel Jasper · 13 years ago
  64. daffc0d Change the datastructure for UnwrappedLines. by Daniel Jasper · 13 years ago
  65. 736c14f Never merge < and ::, as it produces different tokens. by Daniel Jasper · 13 years ago
  66. c36492b Remove errors were if statements were incorrectly put on a single line. by Daniel Jasper · 13 years ago
  67. a31e58b Do not traverse the break-state when we know we cannot break anyway. by Manuel Klimek · 13 years ago
  68. 99c7baa Fix formatting of preprocessor directives (incluces, warnings & errors). by Manuel Klimek · 13 years ago
  69. 7194527 Improve operator kind detection in presence of comments. by Daniel Jasper · 13 years ago
  70. a54d1a9 Fixes formatting of nested brace initializers. by Manuel Klimek · 13 years ago
  71. 1b750ed Make single-line if statements optional. by Daniel Jasper · 13 years ago
  72. 3e9218e Fix a bug in the line merging. by Daniel Jasper · 13 years ago
  73. 2ab0d01 Fix bug that would lead to joining preprocessor directives. by Daniel Jasper · 13 years ago
  74. 39825ea Put simple preprocessor directives on a single line. by Daniel Jasper · 13 years ago
  75. 25837aa Put short if statements on a single line. by Daniel Jasper · 13 years ago
  76. f1e4b7d Refactor datastructure used in clang-format. by Daniel Jasper · 13 years ago
  77. 13f23e1 Improve understanding post increment and decrement. by Daniel Jasper · 13 years ago
  78. 116ba68 Custom DiagnosticConsumer parameter of reformat() + silence diagnostics in unit tests. by Alexander Kornienko · 13 years ago
  79. 942ee72 Stronger respect the input codes line breaks wrt. comments. by Daniel Jasper · 13 years ago
  80. 48cb3b9 Always put a space after ",". by Daniel Jasper · 13 years ago
  81. 5ef433f Don't put spaces around hyphens in include paths. by Daniel Jasper · 13 years ago
  82. ef906a9 Improve identification of c-style casts. by Daniel Jasper · 13 years ago
  83. 2827a7e Formatter: Don't insert a space before unary operators after selector names. by Nico Weber · 13 years ago
  84. 92c0539 Formatter: Remove debugging junk I accidentally landed in r172333. by Nico Weber · 13 years ago
  85. c9d7361 Formatter: Prefer breaking before ObjC selector names over breaking at their ':' by Nico Weber · 13 years ago
  86. f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
  87. 8f1187a Remove unused private field. by Rafael Espindola · 13 years ago
  88. 7b7877a Fix incorrect comparison operator causing loooong formatting times. by Daniel Jasper · 13 years ago
  89. cb465dc Formatter: Remove an always-false condition. by Nico Weber · 13 years ago
  90. c7a5634 Formatter: Remove a redundant CurrentLineType check. by Nico Weber · 13 years ago
  91. a7252d8 Formatter: Initial support for formatting Objective-C method expressions. by Nico Weber · 13 years ago
  92. eee7b81 Formatter: * and & are binary operators before ( and [. by Nico Weber · 13 years ago
  93. 5dafd4a Formatter: * and & are binary operators after ) and ]. by Nico Weber · 13 years ago
  94. 63a54eb Formatter: + and - after { are unary operators. by Nico Weber · 13 years ago
  95. a21aaae Formatter: Format ObjC static and instance methods consistently, add a test for that. by Nico Weber · 13 years ago
  96. 2acb7b7 Fix single-line optimization for ObjC. by Manuel Klimek · 13 years ago
  97. f4ab9ef Implements pulling simple blocks into a single line. by Manuel Klimek · 13 years ago
  98. d6a947f Correct spacing around new and delete. by Daniel Jasper · 13 years ago
  99. fd8c4b1 Improve handling of trailing declaration annotations. by Daniel Jasper · 13 years ago
  100. 2408a8c Improved formatting of constructor initializers by Daniel Jasper · 13 years ago