Re: [committed] libstdc++: Fix doxygen markup for group close commands

2021-04-09 Thread Jonathan Wakely via Gcc-patches
On 08/04/21 21:43 +0100, Jonathan Wakely wrote: On 06/04/21 16:54 +0100, Jonathan Wakely wrote: A change in Doxygen 1.8.16 means that "// @}" is no longer recognized by Doxygen, so doesn't close a @{ group. A "///" comment needs to be used. There are a few cases of /* @} */ which need a

Re: [committed] libstdc++: Fix doxygen markup for group close commands

2021-04-08 Thread Jonathan Wakely via Gcc-patches
On 06/04/21 16:54 +0100, Jonathan Wakely wrote: A change in Doxygen 1.8.16 means that "// @}" is no longer recognized by Doxygen, so doesn't close a @{ group. A "///" comment needs to be used. There are a few cases of /* @} */ which need a similar fix. Tested powerpc64le-linux. Committed to

Re: [committed] libstdc++: Fix doxygen markup for group close commands

2021-04-06 Thread Jonathan Wakely via Gcc-patches
On 06/04/21 16:54 +0100, Jonathan Wakely wrote: https://godbolt.org/z/hTsT96 A change in Doxygen 1.8.16 means that "// @}" is no longer recognized by Doxygen, so doesn't close a @{ group. A "///" comment needs to be used. libstdc++-v3/ChangeLog: *