AK: Pull Is{Integral,FloatingPoint} into the global namespace

This commit is contained in:
Linus Groh 2020-12-05 22:25:19 +00:00 committed by Andreas Kling
parent 04e1827864
commit 4dcd23c2be

View file

@ -41,3 +41,10 @@ concept FloatingPoint = IsFloatingPoint<T>::value;
#endif
}
#if defined(__cpp_concepts) && !defined(__COVERITY__)
using AK::IsFloatingPoint;
using AK::IsIntegral;
#endif