Skip to content

Commit 20c026b

Browse files
committed
Update contrib/libs/cxxsupp/libcxxrt to 2024-09-24
commit_hash:da4630fd5b9c8171bc5123e7901050fcbc86f0be
1 parent e4a44c5 commit 20c026b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contrib/libs/cxxsupp/libcxxrt/exception.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ namespace std
282282
{
283283
// Forward declaration of standard library terminate() function used to
284284
// abort execution.
285-
void terminate(void) _LIBCXXRT_NOEXCEPT;
285+
[[noreturn]] void terminate(void) _LIBCXXRT_NOEXCEPT;
286286
}
287287

288288
using namespace ABI_NAMESPACE;
@@ -1636,7 +1636,7 @@ namespace std
16361636
* Terminates the program, calling a custom terminate implementation if
16371637
* required.
16381638
*/
1639-
void terminate() _LIBCXXRT_NOEXCEPT
1639+
[[noreturn]] void terminate() _LIBCXXRT_NOEXCEPT
16401640
{
16411641
static __cxa_thread_info *info = thread_info();
16421642
if (0 != info && 0 != info->terminateHandler)

contrib/libs/cxxsupp/libcxxrt/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ LICENSE(
1111

1212
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
1313

14-
VERSION(2024-08-06)
14+
VERSION(2024-09-24)
1515

16-
ORIGINAL_SOURCE(https://github.com/libcxxrt/libcxxrt/archive/7a3ef57f64be0f2f2a156af011adfbe76c7dce74.tar.gz)
16+
ORIGINAL_SOURCE(https://github.com/libcxxrt/libcxxrt/archive/40e4fa2049930412a2c43cdf0c39b6b5aa735341.tar.gz)
1717

1818
ADDINCL(
1919
contrib/libs/cxxsupp/libcxxrt

0 commit comments

Comments
 (0)