mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-11 13:07:40 +00:00
@@ -53,7 +53,7 @@ struct TUniqueId {
|
||||
|
||||
bool operator==(const TUniqueId& other) const { return value == other.value; }
|
||||
bool operator!=(const TUniqueId& other) const { return value != other.value; }
|
||||
bool operator<(const TUniqueId& other) const; // TODO
|
||||
bool operator<(const TUniqueId& other) const { return value < other.value; }
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user