Skip to content
Snippets Groups Projects
  1. May 22, 2017
  2. May 18, 2017
  3. Apr 11, 2017
  4. Mar 08, 2017
  5. Feb 21, 2017
  6. Feb 16, 2017
  7. Feb 02, 2017
  8. Feb 01, 2017
    • Krasimir Georgiev's avatar
      [clang-format] Fix regression about not aligning trailing comments in case... · 17abd01e
      Krasimir Georgiev authored
      [clang-format] Fix regression about not aligning trailing comments in case they were previously aligned, but at different indent.
      
      Summary:
      Comment reflower was adding untouchable tokens in case two consecutive comment lines are aligned in the source code. This disallows the whitespace manager to re-indent them later.
      
      source:
      ```
      int i = f(abc, // line 1
                d, // line 2
      	     // line 3
      	  b);
      ```
      Since line 2 and line 3 are aligned, the reflower was marking line 3 as untouchable; however the three comment lines need to be re-aligned.
      output before:
      ```
      int i = f(abc, // line 1
                d,   // line 2
      	     // line 3
      	  b);
      ```
      output after:
      ```
      int i = f(abc, // line 1
                d,   // line 2
      	       // line 3
      	  b);
      ```
      
      Reviewers: djasper
      
      Reviewed By: djasper
      
      Subscribers: sammccall, cfe-commits, klimek
      
      Differential Revision: https://reviews.llvm.org/D29383
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@293755 91177308-0d34-0410-b5e6-96231b3b80d8
      17abd01e
  9. Jan 31, 2017
  10. Jan 30, 2017
  11. Jan 25, 2017
  12. Oct 19, 2016
  13. Jun 17, 2015
  14. Jun 09, 2015
  15. May 06, 2015
  16. Jan 21, 2015
  17. Jan 12, 2015
  18. May 09, 2014
  19. Apr 22, 2014
  20. Apr 17, 2014
  21. Mar 10, 2014
  22. Jan 14, 2014
  23. Jan 09, 2014
  24. Dec 05, 2013
  25. Nov 26, 2013
  26. Nov 12, 2013
  27. Oct 30, 2013
  28. Sep 27, 2013
  29. Sep 16, 2013
  30. Sep 10, 2013
  31. Sep 05, 2013
  32. Aug 08, 2013
Loading