diff options
author | David Robillard <d@drobilla.net> | 2022-10-18 11:48:42 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-18 13:20:18 -0400 |
commit | 1a98f16aabf9e2c28f97b8ec89ae35af5a333252 (patch) | |
tree | 438f1b5e18e5c4c9eabfbca36e13ed9c4ae335ec | |
parent | 516c82ec91ee07de55357e910d93a55eb3d01891 (diff) | |
download | zix-1a98f16aabf9e2c28f97b8ec89ae35af5a333252.tar.gz zix-1a98f16aabf9e2c28f97b8ec89ae35af5a333252.tar.bz2 zix-1a98f16aabf9e2c28f97b8ec89ae35af5a333252.zip |
Add missing pure function attribute
-rw-r--r-- | src/bump_allocator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bump_allocator.c b/src/bump_allocator.c index 0bacb28..f9031b1 100644 --- a/src/bump_allocator.c +++ b/src/bump_allocator.c @@ -12,6 +12,7 @@ static const size_t min_alignment = sizeof(uintmax_t); +ZIX_PURE_FUNC static size_t round_up_multiple(const size_t number, const size_t factor) { |