Clang format

This commit is contained in:
Matthew Parkinson
2019-04-25 14:17:43 +01:00
committed by Matthew Parkinson
parent f88bcdbf58
commit 37afe9d079
11 changed files with 21 additions and 16 deletions

View File

@@ -453,13 +453,13 @@ namespace snmalloc
}
}
template <typename T>
template<typename T>
constexpr inline T min(T t1, T t2)
{
return t1 < t2 ? t1 : t2;
}
template <typename T>
template<typename T>
constexpr inline T max(T t1, T t2)
{
return t1 > t2 ? t1 : t2;