[committed] libstdc++: Fix Doxygen markup

2023-11-17 Thread Jonathan Wakely
Pushed to trunk. -- >8 -- libstdc++-v3/ChangeLog: * include/bits/chrono_io.h: Fix Doxygen markup. --- libstdc++-v3/include/bits/chrono_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/bits/chrono_io.h b/libstdc++-v3/include/bits/chrono_io.h

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: *

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

2021-04-06 Thread Jonathan Wakely via Gcc-patches
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: * include/bits/atomic_base.h: Fix doxygen group close. * include/bits/basic_ios.h: Likewise. *