It seems that the clang formatter of the C/C++ extension has difficulties when intending multiline comments.
I get the following format when using the formatter (so just the first line is formatted properly):
/**
* @brief Does cool stuff
*
* @param param1
* @returns myresult
*/
bool myFunction(bool param1);
However I would expect the format to be:
/**
* @brief Does cool stuff
*
* @param param1
* @returns myresult
*/
bool myFunction(bool param1);
My VSCode Clang Format style:
{BasedOnStyle: Google, IndentWidth: 3, ColumnLimit: 0, NamespaceIndentation: All, AlignTrailingComments: true}
Am I missing a Styleparameter or is this a bug in the formatter?