Bläddra i källkod

LibIPC: Remove unnecessary `template<>`

This fixes a Clang warning.
Daniel Bertalan 4 år sedan
förälder
incheckning
a36c37db47

+ 0 - 1
Userland/Libraries/LibIPC/ClientConnection.h

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

+ 0 - 1
Userland/Libraries/LibIPC/Connection.h

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