1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:47:37 +00:00

AK: Rename MakeUnsigned::type to MakeUnsigned::Type.

Also renames MakeSigned::type to MakeSigned::Type.
This commit is contained in:
asynts 2020-08-03 20:35:25 +02:00 committed by Andreas Kling
parent 7e6fbef8db
commit 05abfc0e1f
3 changed files with 22 additions and 22 deletions

View file

@ -47,7 +47,7 @@ template<typename T>
struct TypeTrivia {
static const size_t bits = sizeof(T) * 8;
static const T sign_bit = 1 << (bits - 1);
static const T mask = typename MakeUnsigned<T>::type(-1);
static const T mask = typename MakeUnsigned<T>::Type(-1);
};
template<typename T, typename U>