1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 08:40:44 +00:00

AK: Add a type alias for DistinctNumeric's underlying type

This commit is contained in:
Timothy Flynn 2023-01-20 15:32:34 -05:00 committed by Jelle Raaijmakers
parent a0522aec90
commit 60b56892ca

View File

@ -89,6 +89,8 @@ class DistinctNumeric {
constexpr static Option options { Opts()... };
public:
using Type = T;
constexpr DistinctNumeric() = default;
constexpr DistinctNumeric(T value)