common/alignment: Fix compilation errors (#4303)
This commit is contained in:
parent
6001538139
commit
80a0f2a118
|
@ -11,7 +11,9 @@ namespace Common {
|
||||||
template <typename T>
|
template <typename T>
|
||||||
constexpr T AlignUp(T value, std::size_t size) {
|
constexpr T AlignUp(T value, std::size_t size) {
|
||||||
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
||||||
return static_cast<T>(value + (size - value % size) % size);
|
auto mod{static_cast<T>(value % size)};
|
||||||
|
value -= mod;
|
||||||
|
return static_cast<T>(mod == T{0} ? value : value + size);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
|
Reference in New Issue