ResultCode: Mark any error code that isn't 0 as an error.

This commit is contained in:
Subv 2018-02-19 00:30:30 -05:00
parent 65f3119074
commit 6e38081165

View File

@ -108,11 +108,11 @@ union ResultCode {
}
constexpr bool IsSuccess() const {
return is_error.ExtractValue(raw) == 0;
return raw == 0;
}
constexpr bool IsError() const {
return is_error.ExtractValue(raw) == 1;
return raw != 0;
}
};