mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
libstdc++: Minor tweak to Doxygen comment for std::pair
It doesn't necessarily hold objects, it can hold references too. libstdc++-v3/ChangeLog: * include/bits/stl_pair.h (pair): Adjust Doxygen comment. Reviewed-by: Tomasz Kamiński <tkaminsk@redhat.com>
This commit is contained in:
committed by
Jonathan Wakely
parent
3c16bcabff
commit
d61f795de9
@@ -292,10 +292,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* @brief Struct holding two objects of arbitrary type.
|
||||
* @brief Struct holding two objects (or references) of arbitrary type.
|
||||
*
|
||||
* @tparam _T1 Type of first object.
|
||||
* @tparam _T2 Type of second object.
|
||||
* @tparam _T1 Type of the `first` member.
|
||||
* @tparam _T2 Type of the `second` member.
|
||||
*
|
||||
* <https://gcc.gnu.org/onlinedocs/libstdc++/manual/utilities.html>
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user