File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14372,19 +14372,19 @@
14372
14372
// types
14373
14373
using type = T;
14374
14374
14375
- // construct/copy/destroy
14375
+ // \ref{refwrap.const}, constructors
14376
14376
template<class U>
14377
14377
constexpr reference_wrapper(U&&) noexcept(@\seebelow@);
14378
14378
constexpr reference_wrapper(const reference_wrapper& x) noexcept;
14379
14379
14380
- // assignment
14380
+ // \ref{refwrap.assign}, assignment
14381
14381
constexpr reference_wrapper& operator=(const reference_wrapper& x) noexcept;
14382
14382
14383
- // access
14383
+ // \ref{refwrap.access}, access
14384
14384
constexpr operator T& () const noexcept;
14385
14385
constexpr T& get() const noexcept;
14386
14386
14387
- // invocation
14387
+ // \ref{refwrap.invoke}, invocation
14388
14388
template<class... ArgTypes>
14389
14389
constexpr invoke_result_t<T&, ArgTypes...> operator()(ArgTypes&&...) const;
14390
14390
};
14405
14405
The template parameter \tcode{T} of \tcode{reference_wrapper}
14406
14406
may be an incomplete type.
14407
14407
14408
- \rSec3[refwrap.const]{Constructors and destructor }
14408
+ \rSec3[refwrap.const]{Constructors}
14409
14409
14410
14410
\indexlibraryctor{reference_wrapper}%
14411
14411
\begin{itemdecl}
You can’t perform that action at this time.
0 commit comments