diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-12-03 23:57:28 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-12-03 23:57:28 +0000 |
commit | 6fb3d28f13dfc2591690b6f66d350f651bae6726 (patch) | |
tree | b5cf247bfea0fff54c69fc5066578f5bf809ed88 | |
parent | ff603745e385a1878a22fa3197911c9c4920a004 (diff) | |
download | gcc-6fb3d28f13dfc2591690b6f66d350f651bae6726.zip gcc-6fb3d28f13dfc2591690b6f66d350f651bae6726.tar.gz gcc-6fb3d28f13dfc2591690b6f66d350f651bae6726.tar.bz2 |
libstdc++: Fix Doxygen markup error
* include/bits/stl_pair.h (pair): Remove stray Doxygen closing marker.
From-SVN: r278950
-rw-r--r-- | libstdc++-v3/ChangeLog | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_pair.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 73250ee..8baac8e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,7 @@ 2019-12-03 Jonathan Wakely <jwakely@redhat.com> + * include/bits/stl_pair.h (pair): Remove stray Doxygen closing marker. + * testsuite/util/slow_clock.h: Fix copyright date. 2019-12-02 Mike Crowe <mac@mcrowe.com> diff --git a/libstdc++-v3/include/bits/stl_pair.h b/libstdc++-v3/include/bits/stl_pair.h index f7ad169..1e0e4fe 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. |