Hi, I would like to reformat an existing code base using clang-format
(according to the Google guidelines). As shown below, some Doxygen comments
are rather ugly afterwards. Any hints on how to avoid this? Is there
special support for Doxygen comments in clang-format? Thanky you very much
in advance for your help!


Before:

void fun(
  RAI last,
  /**< [IN] Random access iterator pointing to the last plus one element of
the
            input range */

After:

void fun(
    RAI last,
    /**< [IN] Random access iterator pointing to the last plus one element
of
       the
              input range */
_______________________________________________
cfe-users mailing list
cfe-users@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-users

Reply via email to