Re: [PATCH] libstdc++: Members missing in std::numeric_limits

2025-07-09 Thread Mateusz Zych
Thank you for reviewing my patch and committing it! I'm glad that I've been able to contribute to such an important project. Thanks, Mateusz Zych On Wed, Jul 9, 2025 at 2:17 PM Jonathan Wakely wrote: > On Fri, 4 Jul 2025 at 13:11, Mateusz Zych wrote: > > > > Hello!

Re: [PATCH] libstdc++: Members missing in std::numeric_limits

2025-07-03 Thread Mateusz Zych
integer-class types I've defined variable template verify_numeric_limits_values_not_meaningful_for<> to avoid code duplication and have clear and readable code. I hope this is OK. Thanks, Mateusz Zych On Wed, Jul 2, 2025 at 7:30 PM Jonathan Wakely wrote: > On Wed, 2 J

Re: [PATCH] libstdc++: Members missing in std::numeric_limits

2025-07-04 Thread Mateusz Zych
Hello! I've updated the ChangeLog, since I forgot to do it before. Thanks, Mateusz Zych On Thu, Jul 3, 2025 at 9:49 PM Mateusz Zych wrote: > Hello! > > I've prepared a patch, which adds all members missing from > std::numeric_limits<> specializations for integ

Re: [PATCH] libstdc++: Members missing in std::numeric_limits

2025-07-02 Thread Mateusz Zych
ss types should be defined identically to std::numeric_limits<> specializations for extended integer types, and thus define all static data members and static member functions. Am I reading this correctly? Thank you, Mateusz Zych On Wed, Jul 2, 2025 at 1:59 PM Jonathan Wakely wrote: >

Re: [PATCH] libstdc++: Members missing in std::numeric_limits

2025-07-02 Thread Mateusz Zych
OK, then I’ll prepare appropriate patch with tests and send it when I’m done implementing it. Thanks, Mateusz Zych On Wed, 2 Jul 2025 at 16:59, Jonathan Wakely wrote: > On Wed, 2 Jul 2025 at 14:45, Mateusz Zych wrote: > > > > > Oh actually the radix members should be of typ

[PATCH] libstdc++: Members missing in std::numeric_limits

2025-07-01 Thread Mateusz Zych
.org/z/E7z4WYfj4 Since adding missing member constants, which are the most relevant to integer-like types, was not a lot of code, I have prepared a Git patch with relevant changes. I hope this patch is useful, Mateusz Zych From 1e83287bbd6adf6ad8f483bd2f891692e0bed0c7 Mon Sep 17 00:00:00 2001 From: M