]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR libstdc++/88607 replace some more UTF-8 characters
authorJonathan Wakely <jwakely@redhat.com>
Thu, 3 Jan 2019 22:07:52 +0000 (22:07 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Thu, 3 Jan 2019 22:07:52 +0000 (22:07 +0000)
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

libstdc++-v3/ChangeLog
libstdc++-v3/include/experimental/memory
libstdc++-v3/include/std/future

index 38f9014830a8743b21b658bdd3ebe9f49208ac6b..76fc247ad1d4f048c5d264f965b425bde413fb55 100644 (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>
 
        PR libstdc++/88607
index 955f83072b9acdd8be766fa7372b404940a0368c..b8faeb23eef70a80224e9f8b3ed43058d31cab77 100644 (file)
@@ -63,12 +63,12 @@ inline namespace fundamentals_v2
       using __reference = add_lvalue_reference_t<_Tp>; // exposition-only
 
       // 3.2.2, observer_ptr constructors
-      // default ctor
+      // default c'tor
       constexpr observer_ptr() noexcept
       : __t()
       { }
 
-      // pointer-accepting ctors
+      // pointer-accepting c'tors
       constexpr observer_ptr(nullptr_t) noexcept
       : __t()
       { }
@@ -77,7 +77,7 @@ inline namespace fundamentals_v2
       : __t(__p)
       { }
 
-      // copying c’tors (in addition to compiler-generated copy c’tor)
+      // copying c'tors (in addition to compiler-generated copy c'tor)
       template <typename _Up,
                typename = typename enable_if<
                  is_convertible<typename add_pointer<_Up>::type, __pointer
index 2b60c58f3bcfb77add02349a2bbe1f8ae24b87d6..6cafde5ee6abc989e5f947754984300ad170a648 100644 (file)
@@ -1629,11 +1629,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     //
     // [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
     // 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
     // shared state or with the return from the last function that releases
     // the shared state, whichever happens first.