Thaddeus Crews
Thaddeus Crews
Thanks! Congratulations on your first merged contribution! 🎉
Similar to #97550, it's probably worth adding these to the other Variant math structs for consistency. There's a fair bit of inconsistency in implementation across those scripts (structurally & functionally)...
The lack of out-of-the-box MSVC support made me hesitant, but seeing as there's a compiler option to enable it I might revisit the idea. Will have to test if the...
It's *possible* that the C++20 minimum versions can be more lax than I originally expected, at least for our purposes, so I'm trying that out this rebase. Ideally, C++20 will...
The alternative is adding a bunch of cpp20 conditionals everywhere. It wouldn't be dealbreaking, but I wasn't sure if that was desired when starting off
> I think we should just either move to c++20, or not. I don't think that supporting c++17 while also using c++20 features is going to lead to a very...
The only two real alternative is giving all inequality operators `#if __cplusplus < 202002L` wrappers, because C++20 fundamentally changes how equality/comparison operators are parsed. As a whole, the C++20 changes...
Superseded by #100749