diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-23 16:45:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-23 16:45:13 +0000 |
commit | 389020e14594e4894e28d1eb9103c210b142509e (patch) | |
tree | 2ba734cdd7a243f46dda7c3d0cc88c2293d9699f /src/include/intarith.h | |
parent | Adding upstream version 18.2.2. (diff) | |
download | ceph-389020e14594e4894e28d1eb9103c210b142509e.tar.xz ceph-389020e14594e4894e28d1eb9103c210b142509e.zip |
Adding upstream version 18.2.3.upstream/18.2.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/include/intarith.h')
-rw-r--r-- | src/include/intarith.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/intarith.h b/src/include/intarith.h index 68b0345a4..92f827d88 100644 --- a/src/include/intarith.h +++ b/src/include/intarith.h @@ -25,6 +25,10 @@ constexpr inline std::make_unsigned_t<std::common_type_t<T, U>> div_round_up(T n return (n + d - 1) / d; } +template<typename T, typename U> +constexpr inline std::make_unsigned_t<std::common_type_t<T, U>> round_down_to(T n, U d) { + return n - n % d; +} template<typename T, typename U> constexpr inline std::make_unsigned_t<std::common_type_t<T, U>> round_up_to(T n, U d) { |