diff options
author | Andreas Kling <kling@serenityos.org> | 2022-11-26 12:18:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-11-26 15:51:34 +0100 |
commit | ae3ffdd521a7c7d1fd4b47f9bbfbfaf20da5a14d (patch) | |
tree | 7b34ebf6fdc89bbc1e948833930997efd90f04c9 /AK/RefPtr.h | |
parent | e50a43652eb80c2480fa9b23782bb11a0ccde7e8 (diff) | |
download | serenity-ae3ffdd521a7c7d1fd4b47f9bbfbfaf20da5a14d.zip |
AK: Make it possible to not `using` AK classes into the global namespace
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.
Diffstat (limited to 'AK/RefPtr.h')
-rw-r--r-- | AK/RefPtr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AK/RefPtr.h b/AK/RefPtr.h index 8ca2346c4b..a98fddd7f3 100644 --- a/AK/RefPtr.h +++ b/AK/RefPtr.h @@ -340,7 +340,9 @@ inline ErrorOr<NonnullRefPtr<T>> adopt_nonnull_ref_or_enomem(T* object) } +#if USING_AK_GLOBALLY using AK::adopt_ref_if_nonnull; using AK::RefPtr; using AK::static_ptr_cast; using AK::try_make_ref_counted; +#endif |