diff options
author | Lioncash <mathew1800@gmail.com> | 2015-02-28 03:16:19 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-02-28 03:16:21 +0100 |
commit | 99ff8bbb0cd52a79fc68f5af11452196b2f08436 (patch) | |
tree | 0b826fc1c522c76ed366e4de05805e48497d9d59 /src | |
parent | Merge pull request #599 from Subv/morton (diff) | |
download | yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.tar yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.tar.gz yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.tar.bz2 yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.tar.lz yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.tar.xz yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.tar.zst yuzu-99ff8bbb0cd52a79fc68f5af11452196b2f08436.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/result.h | 4 |
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 { } }; -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; } |