From 92b69215e63a3303a5e904ab332e2eec236e0ed2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 16 Aug 2021 23:30:18 -0700 Subject: update libcxx, libcxxabi, libunwind, and tsan to llvm 13 rc1 --- lib/libcxx/src/charconv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libcxx/src/charconv.cpp') diff --git a/lib/libcxx/src/charconv.cpp b/lib/libcxx/src/charconv.cpp index 8cfe40d156..78439f9683 100644 --- a/lib/libcxx/src/charconv.cpp +++ b/lib/libcxx/src/charconv.cpp @@ -99,7 +99,7 @@ append8_no_zeros(char* buffer, T v) noexcept } char* -__u32toa(uint32_t value, char* buffer) _NOEXCEPT +__u32toa(uint32_t value, char* buffer) noexcept { if (value < 100000000) { @@ -120,7 +120,7 @@ __u32toa(uint32_t value, char* buffer) _NOEXCEPT } char* -__u64toa(uint64_t value, char* buffer) _NOEXCEPT +__u64toa(uint64_t value, char* buffer) noexcept { if (value < 100000000) { -- cgit v1.2.3