-
Notifications
You must be signed in to change notification settings - Fork 15k
Closed
Labels
clang:diagnosticsNew/improved warning or error message in Clang, but not in clang-tidy or static analyzerNew/improved warning or error message in Clang, but not in clang-tidy or static analyzer
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
Metadata
Metadata
Assignees
Labels
clang:diagnosticsNew/improved warning or error message in Clang, but not in clang-tidy or static analyzerNew/improved warning or error message in Clang, but not in clang-tidy or static analyzer