aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/div_ceil.h
diff options
context:
space:
mode:
authorLevi Behunin <[email protected]>2023-01-29 13:54:13 -0700
committerBehunin <[email protected]>2023-01-29 17:49:42 -0700
commitd5fc56db4bdebcf4f45e39e9c9d0f40229de8cea (patch)
tree4bbcaee76bde35ddc6eff9a1c639866cf278b353 /src/common/div_ceil.h
parent3aab57452153c3dfa8591809bc09797da03b44dc (diff)
downloadyuzu-mainline-d5fc56db4bdebcf4f45e39e9c9d0f40229de8cea.tar.gz
yuzu-mainline-d5fc56db4bdebcf4f45e39e9c9d0f40229de8cea.zip
Move to Clang Format 15
Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run
Diffstat (limited to 'src/common/div_ceil.h')
-rw-r--r--src/common/div_ceil.h4
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);
}