mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
a7d6efc520
Uses the C++17 inline variable variants
22 lines
543 B
C++
22 lines
543 B
C++
// This file is under the public domain.
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <type_traits>
|
|
|
|
namespace Common {
|
|
|
|
template <typename T>
|
|
constexpr T AlignUp(T value, size_t size) {
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
return static_cast<T>(value + (size - value % size) % size);
|
|
}
|
|
|
|
template <typename T>
|
|
constexpr T AlignDown(T value, size_t size) {
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
return static_cast<T>(value - value % size);
|
|
}
|
|
|
|
} // namespace Common
|