kraken: utils: strong-type: derive order

This commit is contained in:
Bruno BELANYI 2022-03-12 02:14:58 +01:00
parent 7f5f1f9e04
commit f0ffc652d5
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@ struct StrongType {
return value_;
}
auto operator<=>(StrongType<T, Tag> const&) const = default;
private:
T value_;
};