diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-01-29 19:52:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-29 19:52:38 -0500 |
commit | 5f4647df7da58aa22be21dd26cfa6de7c5f106c9 (patch) | |
tree | 4bbcaee76bde35ddc6eff9a1c639866cf278b353 /src/common/div_ceil.h | |
parent | 3aab57452153c3dfa8591809bc09797da03b44dc (diff) | |
parent | d5fc56db4bdebcf4f45e39e9c9d0f40229de8cea (diff) |
Merge pull request #9705 from behunin/patch-1
Move to Clang Format 15
Diffstat (limited to 'src/common/div_ceil.h')
-rw-r--r-- | src/common/div_ceil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/div_ceil.h b/src/common/div_ceil.h index eebc279c2..c12477d42 100644 --- a/src/common/div_ceil.h +++ b/src/common/div_ceil.h @@ -10,14 +10,14 @@ namespace Common { /// Ceiled integer division. template <typename N, typename D> -requires std::is_integral_v<N> && std::is_unsigned_v<D> + 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> + 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); } |