1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:57:34 +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

@ -321,52 +321,52 @@ struct MakeUnsigned {
template<>
struct MakeUnsigned<signed char> {
typedef unsigned char type;
typedef unsigned char Type;
};
template<>
struct MakeUnsigned<short> {
typedef unsigned short type;
typedef unsigned short Type;
};
template<>
struct MakeUnsigned<int> {
typedef unsigned type;
typedef unsigned Type;
};
template<>
struct MakeUnsigned<long> {
typedef unsigned long type;
typedef unsigned long Type;
};
template<>
struct MakeUnsigned<long long> {
typedef unsigned long long type;
typedef unsigned long long Type;
};
template<>
struct MakeUnsigned<unsigned char> {
typedef unsigned char type;
typedef unsigned char Type;
};
template<>
struct MakeUnsigned<unsigned short> {
typedef unsigned short type;
typedef unsigned short Type;
};
template<>
struct MakeUnsigned<unsigned int> {
typedef unsigned type;
typedef unsigned Type;
};
template<>
struct MakeUnsigned<unsigned long> {
typedef unsigned long type;
typedef unsigned long Type;
};
template<>
struct MakeUnsigned<unsigned long long> {
typedef unsigned long long type;
typedef unsigned long long Type;
};
template<typename T>
@ -375,52 +375,52 @@ struct MakeSigned {
template<>
struct MakeSigned<signed char> {
typedef signed char type;
typedef signed char Type;
};
template<>
struct MakeSigned<short> {
typedef short type;
typedef short Type;
};
template<>
struct MakeSigned<int> {
typedef int type;
typedef int Type;
};
template<>
struct MakeSigned<long> {
typedef long type;
typedef long Type;
};
template<>
struct MakeSigned<long long> {
typedef long long type;
typedef long long Type;
};
template<>
struct MakeSigned<unsigned char> {
typedef char type;
typedef char Type;
};
template<>
struct MakeSigned<unsigned short> {
typedef short type;
typedef short Type;
};
template<>
struct MakeSigned<unsigned int> {
typedef int type;
typedef int Type;
};
template<>
struct MakeSigned<unsigned long> {
typedef long type;
typedef long Type;
};
template<>
struct MakeSigned<unsigned long long> {
typedef long long type;
typedef long long Type;
};
template<class T>