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