summaryrefslogtreecommitdiff
path: root/AK/Ptr32.h
AgeCommit message (Collapse)Author
2022-11-26AK: Make it possible to not `using` AK classes into the global namespaceAndreas Kling
This patch adds the `USING_AK_GLOBALLY` macro which is enabled by default, but can be overridden by build flags. This is a step towards integrating Jakt and AK types.
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2021-06-24AK: Fix building Ptr32 on x86_64Gunnar Beutner
2021-06-12AK: Make Ptr32 more transparentHediadyoin1
This adds a transparent dereference operator, aswell as a constant arrow operator Also increaces the verbosity of the code
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-21AK: Add a Ptr32 type to handle fixed sized pointersHendiadyoin1
This will be used to fix the UHCI Controller, which relies on the pointer-size being 32-bit