aboutsummaryrefslogtreecommitdiff
path: root/src/common/alignment.h
diff options
context:
space:
mode:
authorTobias <thm.frey@gmail.com>2020-07-12 16:45:49 +0200
committerGitHub <noreply@github.com>2020-07-12 16:45:49 +0200
commit80a0f2a118b858b3ceb4ae0ae09d72353d58c928 (patch)
treed41257ef294df43612dcec9de2b05f1a2987d689 /src/common/alignment.h
parent60015381397913add786b105125b3dca07bf81b1 (diff)
common/alignment: Fix compilation errors (#4303)
Diffstat (limited to 'src/common/alignment.h')
-rw-r--r--src/common/alignment.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/alignment.h b/src/common/alignment.h
index f8c49e0797..b37044bb60 100644
--- a/src/common/alignment.h
+++ b/src/common/alignment.h
@@ -11,7 +11,9 @@ namespace Common {
template <typename T>
constexpr T AlignUp(T value, std::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);
+ auto mod{static_cast<T>(value % size)};
+ value -= mod;
+ return static_cast<T>(mod == T{0} ? value : value + size);
}
template <typename T>