Hi all,
Consider below case
$cat test.c
bool foo=false;
if(foo == false)
{}
and with clang-format tool we would like to transform it into
Hi all,
Consider below case
$cat test.c
bool foo=false;
if(foo == false)
{}
and with clang-format tool we would like to transform it into
This sounds more like a job for clang-tidy
(Clang-Tidy — Extra Clang Tools 16.0.0git documentation)
Michael