From ae3ffdd521a7c7d1fd4b47f9bbfbfaf20da5a14d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 26 Nov 2022 12:18:30 +0100 Subject: 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. --- AK/Buffered.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'AK/Buffered.h') diff --git a/AK/Buffered.h b/AK/Buffered.h index 5eec15d544..dbd446713e 100644 --- a/AK/Buffered.h +++ b/AK/Buffered.h @@ -194,4 +194,6 @@ private: }; } +#if USING_AK_GLOBALLY using AK::Buffered; +#endif -- cgit v1.2.3