1. 454cb70 Add space between ; and (. by Daniel Jasper · 11 years ago
  2. 16a69ef Fix expression recognition in for-loops. by Daniel Jasper · 11 years ago
  3. fca24bc Improve clang-format's memoization behavior. by Daniel Jasper · 11 years ago
  4. aae7bad Fix formatting of complex #if expressions. by Daniel Jasper · 11 years ago
  5. 1407bee Change clang-format's affinity for breaking after return types. by Daniel Jasper · 11 years ago
  6. 2eb23b7 Fix formatting of overloaded assignment operators. by Daniel Jasper · 11 years ago
  7. ac3223e Fix labels with trailing comments and cleanup. by Daniel Jasper · 11 years ago
  8. bf71ba2 Revamp indentation behavior for complex binary expressions. by Daniel Jasper · 11 years ago
  9. 65622aa Revert accidental commit r179015. by Daniel Jasper · 11 years ago
  10. c4ff769 x by Daniel Jasper · 11 years ago
  11. 6b119d6 Allow breaking after 'class' for classes with looong names. by Daniel Jasper · 11 years ago
  12. 27b91cc Fix bad formatting of overloaded operator definitions. by Daniel Jasper · 11 years ago
  13. 8ed9f2b Improve formatting of for loops and multi-variable DeclStmts. by Daniel Jasper · 11 years ago
  14. 81d2d38 Improve formatting of function types. by Daniel Jasper · 11 years ago
  15. 627707b Better fix for r177725. by Daniel Jasper · 11 years ago
  16. b598542 More precisely recognize ObjC method declarations. by Daniel Jasper · 11 years ago
  17. 54a38bd Support for pointers-to-members usage via .* by Alexander Kornienko · 11 years ago
  18. 64f0928 Reduce penalty for breaks after "(" for functions with parameters. by Daniel Jasper · 11 years ago
  19. f9955d3 Add extra indentation for multiline comparisons. by Daniel Jasper · 11 years ago
  20. 9322aae Improve formatting of function types in template parameters. by Daniel Jasper · 11 years ago
  21. cf6d76a Fix clang-format segfault. by Daniel Jasper · 11 years ago
  22. bfa1edd Slightly improve formatting of longer pipe statements. by Daniel Jasper · 11 years ago
  23. 923ebef Basic support for formatting asm() statments. by Daniel Jasper · 11 years ago
  24. d3cf17b Fix dereference formatting in for-loops. by Daniel Jasper · 11 years ago
  25. 8ef19a2 Improve formatting of trailing annotations. by Daniel Jasper · 11 years ago
  26. 6a365aa Fix incorrect cast identification. by Daniel Jasper · 11 years ago
  27. 8d0d19a Fix formatting issue with builder-type calls. by Daniel Jasper · 11 years ago
  28. e74de28 Added AnnotatedToken::isOneOf + a few other refactorings by Alexander Kornienko · 11 years ago
  29. 6f21a98 Fix formatting of new arrays of pointers. by Daniel Jasper · 11 years ago
  30. 3fd9ccd Implemented formatting of rvalue references by Alexander Kornienko · 11 years ago
  31. 4ba9bfd Remove bad space after "default". by Daniel Jasper · 11 years ago
  32. 8a5d7cd Correctly format arrays of pointers and function types. by Daniel Jasper · 11 years ago
  33. 2484971 Normal indent for last element of builder-type call. by Daniel Jasper · 11 years ago
  34. 25e81b2 Reduce penalty for splitting after "{" in static initializers. by Daniel Jasper · 11 years ago
  35. 8ed4100 Dont break between (( in __attribute__((. by Daniel Jasper · 11 years ago
  36. 9c3c7b3 No spaces around pointers to members. by Daniel Jasper · 11 years ago
  37. 807809c Fix spacing after binary operator as macro parameter. by Daniel Jasper · 11 years ago
  38. 9c65b06 Fix formatting of multiplications in array subscripts. by Daniel Jasper · 11 years ago
  39. 518ee34 Fix bad line break decision. by Daniel Jasper · 11 years ago
  40. 84a1a63 In range-based for-loops, prefer splitting after ":". by Daniel Jasper · 11 years ago
  41. 1ef81d5 Only keep empty lines in unwrapped lines if they preceed a line comment. by Daniel Jasper · 11 years ago
  42. 3c08a81 Allow breaking between a type and name in variable declarations. by Daniel Jasper · 11 years ago
  43. 237d4c1 Better formatting of conditional expressions. by Daniel Jasper · 11 years ago
  44. 37eff83 Don't recognize unnamed pointer parameters as casts. by Daniel Jasper · 11 years ago
  45. 3a20441 Allow splitting between string literals and identifiers. by Daniel Jasper · 11 years ago
  46. 1c1303b Remove accidentally introduced no-op line. by Daniel Jasper · 11 years ago
  47. f11a705 Consistently put {} onto the same line for empty functions. by Daniel Jasper · 11 years ago
  48. 7d81281 Allow breaking between type and name in for loops. by Daniel Jasper · 11 years ago
  49. c4615b7 Don't remove blank lines within unwrapped lines. by Daniel Jasper · 11 years ago
  50. 03628b8 Add missing clang-format null pointer check.. by Daniel Jasper · 11 years ago
  51. 34511fb Correctly format macro with unfinished template declaration. by Daniel Jasper · 11 years ago
  52. 82282dc Improve indentation of builder type calls. by Daniel Jasper · 11 years ago
  53. 515f65d Improve formatting of builder-type calls. by Daniel Jasper · 11 years ago
  54. d0f349b Correctly determine */& usage in more cases. by Daniel Jasper · 11 years ago
  55. 6ba52aa Use the correct type to hold enumeration values by Dmitri Gribenko · 11 years ago
  56. 4a544e5 Recognize < and > as binary expressions in builder-type calls. by Daniel Jasper · 11 years ago
  57. dc2efa1 Done break between 'operator' and '<<'. by Daniel Jasper · 11 years ago
  58. 9fc56f2 Fix counting of parameters so that r175162 works as expected. by Daniel Jasper · 11 years ago
  59. fc75908 Reduce penalty for breaking before ./-> after complex calls. by Daniel Jasper · 11 years ago
  60. 6cabab4 Align superclasses for multiple inheritence. by Daniel Jasper · 11 years ago
  61. a03ab10 Allow breaking after the return type in function declarations. by Daniel Jasper · 11 years ago
  62. 37d6931 Formatter: Refactor the cast detection code to be a bit more readable. by Nico Weber · 11 years ago
  63. 4c2cc60 Formatter: Detect ObjC method expressions after casts. by Nico Weber · 11 years ago
  64. b0112e1 Replace 'signed' with 'int'. 'signed' is not typical for LLVM style by Dmitri Gribenko · 11 years ago
  65. 468e399 Fixing the MSVC compiler warning a different way; removed use of static_cast and instead used a signed integer parameter. by Aaron Ballman · 11 years ago
  66. be9f420 Removing a signed/unsigned mismatch warning triggered in MSVC 11. by Aaron Ballman · 11 years ago
  67. 95e8e46 Formatter: Correctly format stars in `sizeof(int**)` and similar places. by Nico Weber · 11 years ago
  68. c2e6d2a Formatter: Detect ObjC message expressions after 'in' in loop by Nico Weber · 11 years ago
  69. 729a743 Fix invalid formatting with spaces before trailing comments. by Daniel Jasper · 11 years ago
  70. 2b4c924 Fix formatting of overloaded operator definitions. by Daniel Jasper · 11 years ago
  71. 8c7f38c Formatter: Remove now-unneeded code for formatting ':'s in ObjC method decls. by Nico Weber · 11 years ago
  72. 051860e Formatter: Detect ObjC array literals. by Nico Weber · 11 years ago
  73. 087387a Fix handling of fake parenthesis during formatting. by Daniel Jasper · 11 years ago
  74. 29f123b Implement a tiny expression parser to improve formatting decisions. by Daniel Jasper · 11 years ago
  75. daf1a15 clang-format: Don't put useless space in f( ::g()). by Daniel Jasper · 11 years ago
  76. 4e8a7b4 Become a little smarter with formatting long chains of pipes. by Daniel Jasper · 11 years ago
  77. 4ed7f3e Formatter: Correctly detect ObjC message expressions preceded by a comment. by Nico Weber · 11 years ago
  78. 8ff690a Optionally derive formatting information from the input file. by Daniel Jasper · 11 years ago
  79. 6b5ba8b Fix an issue with the formatting of stars in default values. by Daniel Jasper · 11 years ago
  80. 4e77809 Handle nested ObjC calls. by Daniel Jasper · 11 years ago
  81. e8a9798 Formatter: No space after & and * in front of ObjC message expressions. by Nico Weber · 11 years ago
  82. ee0feec Formatter: Detect ObjC method expressions after unary operators. by Nico Weber · 11 years ago
  83. 63d7ced Initial support for formatting ObjC method declarations/calls. by Daniel Jasper · 11 years ago
  84. 5b7e7b0 Fix formatting regression introduced by r174307. by Daniel Jasper · 11 years ago
  85. fa543ac Improve formatting of stream operators. by Daniel Jasper · 11 years ago
  86. 2752ff3 Improve handling of trailing block comments. by Daniel Jasper · 11 years ago
  87. 8159d2f Fix an error in formatting of for-loops. by Daniel Jasper · 11 years ago
  88. 0178673 Restructuring of token annotation for formatting. by Daniel Jasper · 11 years ago
  89. f343cab Several improvements to the formatting of static initializers. by Daniel Jasper · 11 years ago
  90. 32d28ee Move the token annotator into separate files. by Daniel Jasper · 11 years ago