[PATCH] D53072: [clang-format] Introduce the flag which allows not to shrink lines

Daniel Jasper via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 7 04:38:34 PST 2019


djasper added a comment.

  $ cat /tmp/test.cc
  int foo(int a,
             int b) {
        f();
    }
  
  $ clang-format -style="{ColumnLimit: 0}" /tmp/test.cc
  int foo(int a,
          int b) {
    f();
  }

Is this not what you want? If so, in what way?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D53072/new/

https://reviews.llvm.org/D53072





More information about the cfe-commits mailing list