diff --git a/AK/Endian.h b/AK/Endian.h index 549e4f4869..adf3d82257 100644 --- a/AK/Endian.h +++ b/AK/Endian.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include @@ -134,6 +135,14 @@ private: template using NetworkOrdered = BigEndian; +template +requires(HasFormatter) struct Formatter> : Formatter { +}; + +template +requires(HasFormatter) struct Formatter> : Formatter { +}; + } using AK::BigEndian;