libstdc++: Fix misleading typedef name in <format>
commitcab0083dc72dfd22a1b2016b068f9313beb7f091
authorJonathan Wakely <jwakely@redhat.com>
Thu, 7 Dec 2023 12:40:18 +0000 (7 12:40 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Thu, 7 Dec 2023 20:56:34 +0000 (7 20:56 +0000)
tree51d613fd33df49ae6ddbf7f834530215ac4f8572
parent2f512f6fcdd55296daff3e01a250d866491014e6
libstdc++: Fix misleading typedef name in <format>

This local typedef for uintptr_t was accidentally named uint64_t,
probably from a careless code completion shortcut. We don't need the
typedef at all since it's only used once. Just use __UINTPTR_TYPE__
directly instead.

libstdc++-v3/ChangeLog:

* include/std/format (_Iter_sink<charT, contiguous_iterator>):
Remove uint64_t local type.
libstdc++-v3/include/std/format