@@ -29,7 +29,7 @@ object Literals {
2929 case None => Left (" invalid IP address" )
3030 }
3131 }
32- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [IpAddress ] = apply(c)(args : _ * )
32+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [IpAddress ] = apply(c)(args* )
3333 }
3434
3535 object ipv4 extends Literally [Ipv4Address ] {
@@ -40,7 +40,7 @@ object Literals {
4040 case None => Left (" invalid IPv4 address" )
4141 }
4242 }
43- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Ipv4Address ] = apply(c)(args : _ * )
43+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Ipv4Address ] = apply(c)(args* )
4444 }
4545
4646 object ipv6 extends Literally [Ipv6Address ] {
@@ -51,7 +51,7 @@ object Literals {
5151 case None => Left (" invalid IPv6 address" )
5252 }
5353 }
54- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Ipv6Address ] = apply(c)(args : _ * )
54+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Ipv6Address ] = apply(c)(args* )
5555 }
5656
5757 object mip extends Literally [Multicast [IpAddress ]] {
@@ -62,7 +62,7 @@ object Literals {
6262 case None => Left (" invalid IP multicast address" )
6363 }
6464 }
65- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Multicast [IpAddress ]] = apply(c)(args : _ * )
65+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Multicast [IpAddress ]] = apply(c)(args* )
6666 }
6767
6868 object mipv4 extends Literally [Multicast [Ipv4Address ]] {
@@ -73,7 +73,7 @@ object Literals {
7373 case None => Left (" invalid IPv4 multicast address" )
7474 }
7575 }
76- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Multicast [Ipv4Address ]] = apply(c)(args : _ * )
76+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Multicast [Ipv4Address ]] = apply(c)(args* )
7777 }
7878
7979 object mipv6 extends Literally [Multicast [Ipv6Address ]] {
@@ -84,7 +84,7 @@ object Literals {
8484 case None => Left (" invalid IPv6 multicast address" )
8585 }
8686 }
87- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Multicast [Ipv6Address ]] = apply(c)(args : _ * )
87+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Multicast [Ipv6Address ]] = apply(c)(args* )
8888 }
8989
9090 object ssmip extends Literally [SourceSpecificMulticast .Strict [IpAddress ]] {
@@ -96,7 +96,7 @@ object Literals {
9696 case None => Left (" invalid source specific IP multicast address" )
9797 }
9898 }
99- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [SourceSpecificMulticast .Strict [IpAddress ]] = apply(c)(args : _ * )
99+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [SourceSpecificMulticast .Strict [IpAddress ]] = apply(c)(args* )
100100 }
101101
102102 object ssmipv4 extends Literally [SourceSpecificMulticast .Strict [Ipv4Address ]] {
@@ -108,7 +108,7 @@ object Literals {
108108 case None => Left (" invalid source specific IPv4 multicast address" )
109109 }
110110 }
111- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [SourceSpecificMulticast .Strict [Ipv4Address ]] = apply(c)(args : _ * )
111+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [SourceSpecificMulticast .Strict [Ipv4Address ]] = apply(c)(args* )
112112 }
113113
114114 object ssmipv6 extends Literally [SourceSpecificMulticast .Strict [Ipv6Address ]] {
@@ -120,7 +120,7 @@ object Literals {
120120 case None => Left (" invalid source specific IPv6 multicast address" )
121121 }
122122 }
123- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [SourceSpecificMulticast .Strict [Ipv6Address ]] = apply(c)(args : _ * )
123+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [SourceSpecificMulticast .Strict [Ipv6Address ]] = apply(c)(args* )
124124 }
125125
126126 object port extends Literally [Port ] {
@@ -131,7 +131,7 @@ object Literals {
131131 case None => Left (" invalid port" )
132132 }
133133 }
134- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Port ] = apply(c)(args : _ * )
134+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Port ] = apply(c)(args* )
135135 }
136136
137137 object hostname extends Literally [Hostname ] {
@@ -142,7 +142,7 @@ object Literals {
142142 case None => Left (" invalid hostname" )
143143 }
144144 }
145- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Hostname ] = apply(c)(args : _ * )
145+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [Hostname ] = apply(c)(args* )
146146 }
147147
148148 object idn extends Literally [IDN ] {
@@ -153,6 +153,6 @@ object Literals {
153153 case None => Left (" invalid IDN" )
154154 }
155155 }
156- def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [IDN ] = apply(c)(args : _ * )
156+ def make (c : Context )(args : c.Expr [Any ]* ): c.Expr [IDN ] = apply(c)(args* )
157157 }
158158}
0 commit comments