mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-07 21:17:07 +09:00
AK: Remove unnecessary Aarch64 wchar_t handling
This is legacy from the Serenity codebase, but given there are no consumers using wchar_t in Ladybird, this can be removed.
This commit is contained in:
parent
4b3a3b0856
commit
7f0f513159
Notes:
github-actions[bot]
2025-05-19 01:19:20 +00:00
Author: https://github.com/ayeteadoe
Commit: 7f0f513159
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4789
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/gmta
2 changed files with 0 additions and 12 deletions
|
@ -292,12 +292,6 @@ template<>
|
|||
struct __MakeUnsigned<bool> {
|
||||
using Type = bool;
|
||||
};
|
||||
#if ARCH(AARCH64)
|
||||
template<>
|
||||
struct __MakeUnsigned<wchar_t> {
|
||||
using Type = wchar_t;
|
||||
};
|
||||
#endif
|
||||
|
||||
template<typename T>
|
||||
using MakeUnsigned = typename __MakeUnsigned<T>::Type;
|
||||
|
|
|
@ -86,12 +86,6 @@ template<>
|
|||
struct __MakeSigned<char> {
|
||||
using Type = char;
|
||||
};
|
||||
#if ARCH(AARCH64)
|
||||
template<>
|
||||
struct __MakeSigned<wchar_t> {
|
||||
using Type = void;
|
||||
};
|
||||
#endif
|
||||
|
||||
template<typename T>
|
||||
using MakeSigned = typename __MakeSigned<T>::Type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue