You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static_assert(((Integer + 1) + Fraction) <= FIXED_POINTS_DETAILS::BitSize<intmax_t>::Value, "Platform does not have a native type large enough for SFixed.");
30
-
31
-
public:
32
-
using IntegerType = FIXED_POINTS_DETAILS::LeastInt<Integer + 1>;
33
-
using FractionType = FIXED_POINTS_DETAILS::LeastUInt<Fraction>;
34
-
using InternalType = FIXED_POINTS_DETAILS::LeastInt<(Integer + 1) + Fraction>;
35
-
36
-
using ShiftType = FIXED_POINTS_DETAILS::LeastUInt<(Integer + 1) + Fraction>;
37
-
using MaskType = FIXED_POINTS_DETAILS::LeastUInt<(Integer + 1) + Fraction>;
static_assert((Integer + Fraction) <= FIXED_POINTS_DETAILS::BitSize<uintmax_t>::Value, "Platform does not have a native type large enough for UFixed.");
30
-
31
-
public:
32
-
using IntegerType = FIXED_POINTS_DETAILS::LeastUInt<Integer>;
33
-
using FractionType = FIXED_POINTS_DETAILS::LeastUInt<Fraction>;
34
-
using InternalType = FIXED_POINTS_DETAILS::LeastUInt<Integer + Fraction>;
35
-
36
-
using ShiftType = FIXED_POINTS_DETAILS::LeastUInt<Integer + Fraction>;
37
-
using MaskType = FIXED_POINTS_DETAILS::LeastUInt<Integer + Fraction>;
0 commit comments