Using clang-format, I want the result somewhat like this:
value = new MyClass(variable1, variable2, mystring + "test",
another_variable);
But I don't want the result below:
value =
new MyClass(variable1, variable2, mystring + "test", another_variable);
How can I do?