diff --git a/AK/Userspace.h b/AK/Userspace.h index c1659821b1..4ac2ef07ed 100644 --- a/AK/Userspace.h +++ b/AK/Userspace.h @@ -31,10 +31,16 @@ namespace AK { +// HACK: This is just here to make syntax highlighting work in Qt Creator. +// Once it supports C++20 concepts, we can remove this. +#ifdef __clang__ +template +#else template concept PointerTypeName = IsPointer::value; - template +#endif + class Userspace { public: Userspace() { }