diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-09-24 01:21:07 -0400 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-09-24 15:52:05 -0400 |
commit | 73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83 (patch) | |
tree | 31ecba073091bae2a424f3d0b6215591408edca3 /src/common/div_ceil.h | |
parent | 31c0f6ca338ded9420a9f35df4323c3da0d8e2cd (diff) |
general: Update style to clang-format-12
Diffstat (limited to 'src/common/div_ceil.h')
-rw-r--r-- | src/common/div_ceil.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/div_ceil.h b/src/common/div_ceil.h index 95e1489a9..e1db35464 100644 --- a/src/common/div_ceil.h +++ b/src/common/div_ceil.h @@ -11,15 +11,15 @@ namespace Common { /// Ceiled integer division. template <typename N, typename D> -requires std::is_integral_v<N>&& std::is_unsigned_v<D>[[nodiscard]] constexpr N DivCeil(N number, - D divisor) { +requires std::is_integral_v<N> && std::is_unsigned_v<D> +[[nodiscard]] constexpr N DivCeil(N number, D divisor) { return static_cast<N>((static_cast<D>(number) + divisor - 1) / divisor); } /// Ceiled integer division with logarithmic divisor in base 2 template <typename N, typename D> -requires std::is_integral_v<N>&& std::is_unsigned_v<D>[[nodiscard]] constexpr N DivCeilLog2( - N value, D alignment_log2) { +requires std::is_integral_v<N> && std::is_unsigned_v<D> +[[nodiscard]] constexpr N DivCeilLog2(N value, D alignment_log2) { return static_cast<N>((static_cast<D>(value) + (D(1) << alignment_log2) - 1) >> alignment_log2); } |