From b8da1932f33608e58a34b2d06819ba91502244ce Mon Sep 17 00:00:00 2001 From: Anthony Leedom Date: Fri, 9 Sep 2016 18:33:23 -0500 Subject: [PATCH] Fix emplace Signature Universal reference moved to the left of template parameter pack elipsis in documentation. --- doc/27_ref_optional_synopsis.qbk | 2 +- doc/28_ref_optional_semantics.qbk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/27_ref_optional_synopsis.qbk b/doc/27_ref_optional_synopsis.qbk index 54523d6..8a9386f 100644 --- a/doc/27_ref_optional_synopsis.qbk +++ b/doc/27_ref_optional_synopsis.qbk @@ -120,7 +120,7 @@ template optional& operator = ( optional&& rhs ) ; ``[link reference_optional_operator_move_equal_other_optional __GO_TO__]`` - template void emplace ( Args...&& args ) ; ``[link reference_optional_emplace __GO_TO__]`` + template void emplace ( Args&&... args ) ; ``[link reference_optional_emplace __GO_TO__]`` template optional& operator = ( InPlaceFactory const& f ) ; ``[link reference_optional_operator_equal_factory __GO_TO__]`` diff --git a/doc/28_ref_optional_semantics.qbk b/doc/28_ref_optional_semantics.qbk index 31dc178..52febca 100644 --- a/doc/28_ref_optional_semantics.qbk +++ b/doc/28_ref_optional_semantics.qbk @@ -446,7 +446,7 @@ __SPACE__ [#reference_optional_emplace] -[: `template void optional::emplace( Args...&& args );`] +[: `template void optional::emplace( Args&&... args );`] * [*Requires:] The compiler supports rvalue references and variadic templates. * [*Effect:] If `*this` is initialized calls `*this = none`.