[ox/std] Fix errCode extraction incorrect bit shift

This commit is contained in:
Gary Talent 2018-08-19 00:06:37 -05:00
parent 338199be12
commit 32e2878fb1

View File

@ -23,7 +23,7 @@ namespace ox {
using Error = uint64_t;
constexpr Error errCode(Error err) {
return (err >> 58) & onMask<Error>(5);
return (err >> 59) & onMask<Error>(5);
}
struct ErrorInfo {