Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1) We don't need ULL modifier because of https://en.cppreference.com/w/c/language/integer_constant (look at `The type of the integer constant` section) 2) We need to add U modifier to all values to fix some issues with `set_field` and `get_field` macros (for example, when `mask` = 1 << 31, it leads to UB becuase of signed overflow)
- Loading branch information