diff --git a/AK/Endian.h b/AK/Endian.h index 549e4f48698..adf3d822570 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;