PR libstdc++/88607 replace some more UTF-8 characters

2019-01-03  Jonathan Wakely  <jwakely@redhat.com>
	    Jakub Jelinek  <jakub@redhat.com>

	PR libstdc++/88607
	* include/experimental/memory: Replace UTF-8 quote characters.
	* include/std/future: Replace UTF-8 "em dash" characters.

Co-Authored-By: Jakub Jelinek <jakub@redhat.com>

From-SVN: r267565
This commit is contained in:
Jonathan Wakely 2019-01-03 22:07:52 +00:00 committed by Jonathan Wakely
parent 3c732e6fe8
commit 43f1a5e1d8
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2019-01-03 Jonathan Wakely <jwakely@redhat.com>
Jakub Jelinek <jakub@redhat.com>
PR libstdc++/88607
* include/experimental/memory: Replace UTF-8 quote characters.
* include/std/future: Replace UTF-8 "em dash" characters.
2019-01-03 Jonathan Wakely <jwakely@redhat.com> 2019-01-03 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/88607 PR libstdc++/88607

View File

@ -63,12 +63,12 @@ inline namespace fundamentals_v2
using __reference = add_lvalue_reference_t<_Tp>; // exposition-only using __reference = add_lvalue_reference_t<_Tp>; // exposition-only
// 3.2.2, observer_ptr constructors // 3.2.2, observer_ptr constructors
// default ctor // default c'tor
constexpr observer_ptr() noexcept constexpr observer_ptr() noexcept
: __t() : __t()
{ } { }
// pointer-accepting ctors // pointer-accepting c'tors
constexpr observer_ptr(nullptr_t) noexcept constexpr observer_ptr(nullptr_t) noexcept
: __t() : __t()
{ } { }
@ -77,7 +77,7 @@ inline namespace fundamentals_v2
: __t(__p) : __t(__p)
{ } { }
// copying ctors (in addition to compiler-generated copy ctor) // copying c'tors (in addition to compiler-generated copy c'tor)
template <typename _Up, template <typename _Up,
typename = typename enable_if< typename = typename enable_if<
is_convertible<typename add_pointer<_Up>::type, __pointer is_convertible<typename add_pointer<_Up>::type, __pointer

View File

@ -1629,11 +1629,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
// //
// [futures.async]: // [futures.async]:
// //
// a call to a waiting function on an asynchronous return object that // - a call to a waiting function on an asynchronous return object that
// shares the shared state created by this async call shall block until // shares the shared state created by this async call shall block until
// the associated thread has completed, as if joined, or else time out. // the associated thread has completed, as if joined, or else time out.
// //
// the associated thread completion synchronizes with the return from // - the associated thread completion synchronizes with the return from
// the first function that successfully detects the ready status of the // the first function that successfully detects the ready status of the
// shared state or with the return from the last function that releases // shared state or with the return from the last function that releases
// the shared state, whichever happens first. // the shared state, whichever happens first.