AK: Make Concepts.h and StdLibExtras.h properly alias their own sumbols.

This commit is contained in:
Michel Hermier 2021-03-27 22:24:50 +01:00 committed by Andreas Kling
parent 71a9a14c17
commit b8fac0a8b3
Notes: sideshowbarker 2024-07-18 21:00:32 +09:00
2 changed files with 5 additions and 3 deletions

View file

@ -47,8 +47,8 @@ concept Arithmetic = IsArithmetic<T>::value;
#if defined(__cpp_concepts) && !defined(__COVERITY__)
using AK::IsArithmetic;
using AK::IsFloatingPoint;
using AK::IsIntegral;
using AK::Concepts::Arithmetic;
using AK::Concepts::FloatingPoint;
using AK::Concepts::Integral;
#endif

View file

@ -618,7 +618,9 @@ using AK::IsBaseOf;
using AK::IsClass;
using AK::IsConst;
using AK::IsEnum;
using AK::IsFloatingPoint;
using AK::IsFundamental;
using AK::IsIntegral;
using AK::IsNullPointer;
using AK::IsSame;
using AK::IsUnion;