Closed
Description
https://clang.godbolt.org/z/fqncE8MT6
We can use <br>
to start a newline in a description, but \n
gives a warning:
/// Test function
/// \returns Value<br>
/// second line
int foo();
/// Another test function
/// \returns Value\n
/// second line
int bar();
warning: unknown command tag name [-Wdocumentation-unknown-command]
/// \returns Value\n
CC'ing @aaronpuchert as this will hopefully just be a minor extension to https://reviews.llvm.org/D111190