Adding comments of type /// and preventing automatic insertion of comments in next line

Since Xcode 11 commenting C++ code becomes a bit of a problem.


Adding a comment into one line like


/// This is a comment

and hitting afterwards <return> adds automatically a line with the comment delimiters in the next line. How can I stop this behaviour?


/// This is a comment
/// (but I do not like to have a comment in this line)