Skip to content

Commit a8624ad

Browse files
committed
Fix compilation
1 parent 274d25c commit a8624ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/src/main/scala/com/comcast/ip4s/SocketAddress.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import cats.syntax.all._
2121

2222
/** An IP address of the specified type and a port number. Used to describe the source or destination of a socket.
2323
*/
24-
final case class SocketAddress[+A <: Host](host: A, port: Port) extends SocketAddressPlatform[A] with GenSocketAddress {
24+
final case class SocketAddress[+A <: Host](host: A, port: Port) extends GenSocketAddress with SocketAddressPlatform[A] {
2525
override def toString: String =
2626
host match {
2727
case _: Ipv6Address => s"[$host]:$port"

0 commit comments

Comments
 (0)