The approved P3778R0 wording doesn't have type_order<_Tp, _Up>::type, so
this patch removes it.
2025-11-10 Jakub Jelinek <jakub@redhat.com>
* libsupc++/compare: Implement final wording of C++26 P3778R0 - Fix
for type_order template definition.
(std::type_order): Remove type member.
{
static constexpr strong_ordering value = __builtin_type_order(_Tp, _Up);
using value_type = strong_ordering;
- using type = type_order<_Tp, _Up>;
constexpr operator value_type() const noexcept { return value; }
constexpr value_type operator()() const noexcept { return value; }
};