From 4dcd23c2be2a65fc633f478ed98e0e1b67089f5f Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 5 Dec 2020 22:25:19 +0000 Subject: [PATCH] AK: Pull Is{Integral,FloatingPoint} into the global namespace --- AK/Concepts.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/AK/Concepts.h b/AK/Concepts.h index b49c5790cc6..603ed2d367d 100644 --- a/AK/Concepts.h +++ b/AK/Concepts.h @@ -41,3 +41,10 @@ concept FloatingPoint = IsFloatingPoint::value; #endif } + +#if defined(__cpp_concepts) && !defined(__COVERITY__) + +using AK::IsFloatingPoint; +using AK::IsIntegral; + +#endif