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:
Jonathan Wakely
2026-04-01 15:22:14 +01:00
committed by Jonathan Wakely
parent 3c16bcabff
commit d61f795de9

View File

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