Doxygen style:
/* This is a doxygen style
* comment in old C-style.
*/
work fine. But the doxygen style
/// This is a doxygen
/// style multiline
/// C++ comment.
gets wrapped as:
/// This is a doxygen / style multiline
// C++ comment.
which is wrong. The expected behavior is something like:
/// This is a doxygen style multiline
/// C++ comment.