1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

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