Part of #21421: applied clang-format to Util.cpp

This commit is contained in:
Claudio Tiecher 2024-04-01 22:11:34 +02:00
parent 33c9c27298
commit 8e73eb1d07
1 changed files with 1 additions and 2 deletions

View File

@ -501,8 +501,7 @@ std::vector<uint8_t> Ungzip(const void* data, const size_t dataLen)
return output;
}
template<typename T>
constexpr T kAddClampBody(T value, T value_to_add, T min_cap, T max_cap)
template<typename T> constexpr T kAddClampBody(T value, T value_to_add, T min_cap, T max_cap)
{
if ((value_to_add > 0) && (value > (max_cap - (value_to_add))))
{