diff options
Diffstat (limited to 'lib/libcxx/src/charconv.cpp')
| -rw-r--r-- | lib/libcxx/src/charconv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |
