mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
AK: Add non-const DistinctNumeric::value() getter
This commit is contained in:
parent
76e85ebbfc
commit
8b2361e362
1 changed files with 1 additions and 0 deletions
|
@ -60,6 +60,7 @@ public:
|
|||
}
|
||||
|
||||
constexpr const T& value() const { return m_value; }
|
||||
constexpr T& value() { return m_value; }
|
||||
|
||||
// Always implemented: identity.
|
||||
constexpr bool operator==(const Self& other) const
|
||||
|
|
Loading…
Reference in a new issue