diff --git a/AK/Concepts.h b/AK/Concepts.h index 697a8f1ec0..2996e43633 100644 --- a/AK/Concepts.h +++ b/AK/Concepts.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include @@ -32,6 +33,9 @@ concept Enum = IsEnum; template concept SameAs = IsSame; +template +concept AnyString = Detail::IsConstructible; + // FIXME: remove once Clang formats these properly. // clang-format off template