mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
result: Make comparison operators take references
It's unnecessary to make copies for simple comparisons like this.
This commit is contained in:
parent
c9ef377afa
commit
99ff8bbb0c
1 changed files with 2 additions and 2 deletions
|
@ -208,11 +208,11 @@ union ResultCode {
|
|||
}
|
||||
};
|
||||
|
||||
inline bool operator==(const ResultCode a, const ResultCode b) {
|
||||
inline bool operator==(const ResultCode& a, const ResultCode& b) {
|
||||
return a.raw == b.raw;
|
||||
}
|
||||
|
||||
inline bool operator!=(const ResultCode a, const ResultCode b) {
|
||||
inline bool operator!=(const ResultCode& a, const ResultCode& b) {
|
||||
return a.raw != b.raw;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue