How to format a line like this:
test << "a" << "b" << "c";
into this:
test << "a"
<< "b"
<< "c"
using ClangFormat?
How to format a line like this:
test << "a" << "b" << "c";
into this:
test << "a"
<< "b"
<< "c"
using ClangFormat?