diff mbox series

libstdc++: Fix Doxygen markup error

Message ID 20191203235629.GA1339195@redhat.com
State New
Headers show
Series libstdc++: Fix Doxygen markup error | expand

Commit Message

Jonathan Wakely Dec. 3, 2019, 11:56 p.m. UTC
* include/bits/stl_pair.h (pair): Remove stray Doxygen closing marker.

I added this stray marker a few months ago by mistake.

Committed to trunk.
commit ba39ad7d7e29e1459ad1d816dc84753ef7503f51
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Tue Dec 3 11:50:31 2019 +0000

    libstdc++: Fix Doxygen markup error
    
            * include/bits/stl_pair.h (pair): Remove stray Doxygen closing marker.
diff mbox series

Patch

diff --git a/libstdc++-v3/include/bits/stl_pair.h b/libstdc++-v3/include/bits/stl_pair.h
index f7ad1696545..1e0e4fe892a 100644
--- a/libstdc++-v3/include/bits/stl_pair.h
+++ b/libstdc++-v3/include/bits/stl_pair.h
@@ -272,7 +272,6 @@  _GLIBCXX_BEGIN_NAMESPACE_VERSION
       explicit constexpr pair(const _T1& __a, const _T2& __b)
       : first(__a), second(__b) { }
 #endif
-      //@}
 
 #if __cplusplus < 201103L
       /// There is also a templated constructor to convert from other pairs.