public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed] libstdc++: Add noexcept to common_iterator proxy operators
@ 2021-10-01 19:40 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2021-10-01 19:40 UTC (permalink / raw)
  To: libstdc++, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 241 bytes --]

Signed-off-by: Jonathan Wakely <jwakely@redhat.com>

libstdc++-v3/ChangeLog:

	* include/bits/stl_iterator.h (common_iterator::__arrow_proxy)
	(common_iterator::__postfix_proxy): Add noexcept.

Tested powerpc64le-linux. Committed to trunk.


[-- Attachment #2: patch.txt --]
[-- Type: text/plain, Size: 1072 bytes --]

commit ce709ad3dc0ed5d7ea48a116311d4441225446f0
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Apr 30 14:43:54 2021

    libstdc++: Add noexcept to common_iterator proxy operators
    
    Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/stl_iterator.h (common_iterator::__arrow_proxy)
            (common_iterator::__postfix_proxy): Add noexcept.

diff --git a/libstdc++-v3/include/bits/stl_iterator.h b/libstdc++-v3/include/bits/stl_iterator.h
index 4973f792b56..8517652a173 100644
--- a/libstdc++-v3/include/bits/stl_iterator.h
+++ b/libstdc++-v3/include/bits/stl_iterator.h
@@ -1813,7 +1813,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
     public:
       const iter_value_t<_It>*
-      operator->() const
+      operator->() const noexcept
       { return std::__addressof(_M_keep); }
     };
 
@@ -1828,7 +1828,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
     public:
       const iter_value_t<_It>&
-      operator*() const
+      operator*() const noexcept
       { return _M_keep; }
     };
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-01 19:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01 19:40 [committed] libstdc++: Add noexcept to common_iterator proxy operators Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).