mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-25 11:48:06 +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
Notes:
sideshowbarker
2024-07-19 04:14:40 +09:00
Author: https://github.com/asynts
Commit: 05abfc0e1f
Pull-request: https://github.com/SerenityOS/serenity/pull/3007
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/nico
3 changed files with 22 additions and 22 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue