Everywhere: Remove all KERNEL #defines

This commit is contained in:
Tim Ledbetter
2024-06-17 23:12:53 +01:00
committed by Andreas Kling
parent de99dd2c89
commit 5ca2f4dfd7
73 changed files with 116 additions and 808 deletions

View File

@@ -201,11 +201,9 @@ requires(!IsIntegral<T>)
__DEFINE_GENERIC_ABS(int, 0, abs);
__DEFINE_GENERIC_ABS(long, 0L, labs);
__DEFINE_GENERIC_ABS(long long, 0LL, llabs);
#ifndef KERNEL
__DEFINE_GENERIC_ABS(float, 0.0F, fabsf);
__DEFINE_GENERIC_ABS(double, 0.0, fabs);
__DEFINE_GENERIC_ABS(long double, 0.0L, fabsl);
#endif
#undef __DEFINE_GENERIC_ABS