<div dir="ltr"><div><div><span style="font-family:courier new,monospace">Hi, I would like to
 reformat an existing code base using clang-format (according to the 
Google guidelines). As shown below, the line breaking of some Doxygen comments is not yet optimal using version 3.5. Any hints on how to avoid this? Is there special 
support for Doxygen comments in clang-format? Thank you very much in 
advance for your help! Regards</span></div><div><span style="font-family:courier new,monospace"><br><br>Before:<br><br>void fun(<br>  RAI last,<br>  /**< [IN] Random access iterator [...] of the<br>            input range */<br><br></span></div><span style="font-family:courier new,monospace">After:<br></span><span style="font-family:courier new,monospace"><br>void fun(<br>    RAI last,<br>    /**< [IN] Random access iterator [...] of<br>       the<br>              input range */<br><br></span></div><span style="font-family:courier new,monospace">Ideally:<br><br></span><span style="font-family:courier new,monospace">void fun(<br>    RAI last,<br>    /**< [IN] Random access iterator [...] of<br>       the input range */<br></span><br></div>