Hello,
I have code like that:
ierr = KSPDestroy(&ksp);CHKERRQ(ierr);
clang-format introduces a linebreak between the two statements. Is there a
possiblity to omit that?
My configuration, based on style LLVM:
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: true
A
Hello,
I play around with clang-format 3.8.1
My style file ~/.clang-format includes:
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
AfterFunction: true
AfterNamespace: false
But still it produces a format like that:
namespace precice
{
na