aboutsummaryrefslogtreecommitdiff
path: root/libcxx/src/charconv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/src/charconv.cpp')
-rw-r--r--libcxx/src/charconv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/charconv.cpp b/libcxx/src/charconv.cpp
index 05ee2cbd4ac8..d01ecddc4660 100644
--- a/libcxx/src/charconv.cpp
+++ b/libcxx/src/charconv.cpp
@@ -21,13 +21,13 @@ namespace __itoa
_LIBCPP_FUNC_VIS char*
__u32toa(uint32_t value, char* buffer) noexcept
{
- return __base_10_u32(buffer, value);
+ return __base_10_u32(buffer, value);
}
_LIBCPP_FUNC_VIS char*
__u64toa(uint64_t value, char* buffer) noexcept
{
- return __base_10_u64(buffer, value);
+ return __base_10_u64(buffer, value);
}
} // namespace __itoa