Closed
Description
namespace repro {
/// A struct.
struct S
{
/**
* \brief Integer overload.
* \details More info
*/
void f(int) {}
/**
* \brief C string overload.
* \details More info
*/
void f(const char*) {}
};
} // namespace repro
Renders:
Merging two distinct descriptions in a single paragraph is confusing.
If we use the brief-only Javadoc format, things work:
namespace repro {
/// A struct.
struct S
{
/// Integer overload.
void f(int) {}
/// C string overload.
void f(const char*) {}
};
} // namespace repro
Metadata
Metadata
Assignees
Labels
No labels