diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
commit | ffab6897aa1bc668f98130b4bb485a4602509938 (patch) | |
tree | a4d1933fc390ea0803bb3826353262fbf06b885f /AK/StdLibExtras.h | |
parent | 27fa09aee492e6c8da9168d24f0b1d2c5d2162d5 (diff) | |
download | serenity-ffab6897aa1bc668f98130b4bb485a4602509938.zip |
Big, possibly complete sweep of naming changes.
Diffstat (limited to 'AK/StdLibExtras.h')
-rw-r--r-- | AK/StdLibExtras.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/StdLibExtras.h b/AK/StdLibExtras.h index 8c13ee0e12..7d68c5d002 100644 --- a/AK/StdLibExtras.h +++ b/AK/StdLibExtras.h @@ -45,7 +45,7 @@ inline T max(const T& a, const T& b) template<typename T, typename U> -static inline T ceilDiv(T a, U b) +static inline T ceil_div(T a, U b) { static_assert(sizeof(T) == sizeof(U)); T result = a / b; @@ -173,5 +173,5 @@ using AK::move; using AK::forward; using AK::exchange; using AK::swap; -using AK::ceilDiv; +using AK::ceil_div; |