diff --git a/AK/Concepts.h b/AK/Concepts.h index b49c5790cc6a9e7fc3dce6a54b77781f97f3ac0f..603ed2d367d4626286880fef35199ee3c155f8fe 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