summaryrefslogtreecommitdiff
path: root/AK/BitCast.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-11-26 12:18:30 +0100
committerAndreas Kling <kling@serenityos.org>2022-11-26 15:51:34 +0100
commitae3ffdd521a7c7d1fd4b47f9bbfbfaf20da5a14d (patch)
tree7b34ebf6fdc89bbc1e948833930997efd90f04c9 /AK/BitCast.h
parente50a43652eb80c2480fa9b23782bb11a0ccde7e8 (diff)
downloadserenity-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/BitCast.h')
-rw-r--r--AK/BitCast.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/AK/BitCast.h b/AK/BitCast.h
index 06b7b11879..a893bb858b 100644
--- a/AK/BitCast.h
+++ b/AK/BitCast.h
@@ -6,6 +6,8 @@
#pragma once
+#include <AK/Platform.h>
+
namespace AK {
template<typename T, typename U>
@@ -24,4 +26,6 @@ template<typename T, typename U>
}
+#if USING_AK_GLOBALLY
using AK::bit_cast;
+#endif