1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

AK: Fully qualify some usages of AK features outside of the AK namespace

This commit is contained in:
Tim Schumacher 2022-11-27 16:40:42 +01:00 committed by Andreas Kling
parent 03fd9002da
commit a8c73998f1
3 changed files with 5 additions and 5 deletions

View file

@ -72,7 +72,7 @@ using mode_t = unsigned short;
# endif
#endif
using FlatPtr = Conditional<sizeof(void*) == 8, u64, u32>;
using FlatPtr = AK::Detail::Conditional<sizeof(void*) == 8, u64, u32>;
constexpr u64 KiB = 1024;
constexpr u64 MiB = KiB * KiB;