Merge pull request #618 from lioncash/ref

result: Make comparison operators take references
This commit is contained in:
bunnei 2015-03-01 22:27:28 -05:00
commit 9a47eb117c

View file

@ -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;
}