public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Jonathan Wakely <redi@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r13-5081] libstdc++: Fix tzdb.cc to compile with -fno-exceptions
Date: Tue, 10 Jan 2023 10:10:14 +0000 (GMT)	[thread overview]
Message-ID: <20230110101014.9551D3858005@sourceware.org> (raw)

https://gcc.gnu.org/g:8b7c12d83ccb6565d1f4532f9669c33ebbafaef8

commit r13-5081-g8b7c12d83ccb6565d1f4532f9669c33ebbafaef8
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Jan 9 14:13:16 2023 +0000

    libstdc++: Fix tzdb.cc to compile with -fno-exceptions
    
    libstdc++-v3/ChangeLog:
    
            * src/c++20/tzdb.cc (tzdb_list::_S_init_tzdb): Use __try and
            __catch macros for exception handling.

Diff:
---
 libstdc++-v3/src/c++20/tzdb.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/src/c++20/tzdb.cc b/libstdc++-v3/src/c++20/tzdb.cc
index 7227fe7cfe6..e335ea61c4d 100644
--- a/libstdc++-v3/src/c++20/tzdb.cc
+++ b/libstdc++-v3/src/c++20/tzdb.cc
@@ -1197,11 +1197,11 @@ namespace std::chrono
   const tzdb&
   tzdb_list::_Node::_S_init_tzdb()
   {
-    try
+    __try
       {
 	return reload_tzdb();
       }
-    catch (const std::exception&)
+    __catch (const std::exception&)
       {
 	auto [leaps, ok] = _S_read_leap_seconds();

                 reply	other threads:[~2023-01-10 10:10 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230110101014.9551D3858005@sourceware.org \
    --to=redi@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).