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:
parent
7e6fbef8db
commit
05abfc0e1f
3 changed files with 22 additions and 22 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue