1
0
Fork 0
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:
Ashton 2025-05-16 18:38:31 -07:00 committed by Andrew Kaster
parent 4b3a3b0856
commit 7f0f513159
Notes: github-actions[bot] 2025-05-19 01:19:20 +00:00
2 changed files with 0 additions and 12 deletions

View file

@ -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;

View file

@ -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;