From c6e4563489c05893639eeb3a21bfd27cf7a0718a Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 14 May 2024 12:22:39 -0400 Subject: [PATCH] AK: Export Statistics to the global namespace --- AK/Statistics.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/AK/Statistics.h b/AK/Statistics.h index 071f016475c..25d4b64ce7d 100644 --- a/AK/Statistics.h +++ b/AK/Statistics.h @@ -123,3 +123,7 @@ private: }; } + +#if USING_AK_GLOBALLY +using AK::Statistics; +#endif