1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

LibIPC: Remove unnecessary template<>

This fixes a Clang warning.
This commit is contained in:
Daniel Bertalan 2021-07-05 19:26:07 +02:00 committed by Gunnar Beutner
parent 2db4709c0c
commit a36c37db47
2 changed files with 0 additions and 2 deletions

View file

@ -59,7 +59,6 @@ private:
} }
template<>
template<typename ClientEndpoint, typename ServerEndpoint> template<typename ClientEndpoint, typename ServerEndpoint>
struct AK::Formatter<IPC::ClientConnection<ClientEndpoint, ServerEndpoint>> : Formatter<Core::Object> { struct AK::Formatter<IPC::ClientConnection<ClientEndpoint, ServerEndpoint>> : Formatter<Core::Object> {
}; };

View file

@ -267,7 +267,6 @@ protected:
} }
template<>
template<typename LocalEndpoint, typename PeerEndpoint> template<typename LocalEndpoint, typename PeerEndpoint>
struct AK::Formatter<IPC::Connection<LocalEndpoint, PeerEndpoint>> : Formatter<Core::Object> { struct AK::Formatter<IPC::Connection<LocalEndpoint, PeerEndpoint>> : Formatter<Core::Object> {
}; };