summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/result.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 0e391fe2d..3648a168b 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -208,11 +208,11 @@ union ResultCode {
208 } 208 }
209}; 209};
210 210
211inline bool operator==(const ResultCode a, const ResultCode b) { 211inline bool operator==(const ResultCode& a, const ResultCode& b) {
212 return a.raw == b.raw; 212 return a.raw == b.raw;
213} 213}
214 214
215inline bool operator!=(const ResultCode a, const ResultCode b) { 215inline bool operator!=(const ResultCode& a, const ResultCode& b) {
216 return a.raw != b.raw; 216 return a.raw != b.raw;
217} 217}
218 218