mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
Everywhere: Use ARCH(AARCH64) instead of AK_ARCH_AARCH64
The former is typo-resistant after 349e54d5375a4a, so make use of that.
This commit is contained in:
parent
50f42407f6
commit
97b7e494e4
Notes:
sideshowbarker
2024-07-17 08:37:36 +09:00
Author: https://github.com/nico
Commit: 97b7e494e4
Pull-request: https://github.com/SerenityOS/serenity/pull/18371
7 changed files with 29 additions and 29 deletions
|
@ -274,7 +274,7 @@ template<>
|
|||
struct __MakeUnsigned<bool> {
|
||||
using Type = bool;
|
||||
};
|
||||
#ifdef AK_ARCH_AARCH64
|
||||
#if ARCH(AARCH64)
|
||||
template<>
|
||||
struct __MakeUnsigned<wchar_t> {
|
||||
using Type = wchar_t;
|
||||
|
@ -332,7 +332,7 @@ template<>
|
|||
struct __MakeSigned<char> {
|
||||
using Type = char;
|
||||
};
|
||||
#ifdef AK_ARCH_AARCH64
|
||||
#if ARCH(AARCH64)
|
||||
template<>
|
||||
struct __MakeSigned<wchar_t> {
|
||||
using Type = void;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue