Change varargs[T] to openarray[T]

This commit is contained in:
Billingsly Wetherfordshire
2013-05-04 19:26:02 -05:00
parent e662c973ef
commit cc887bf66e

View File

@@ -126,6 +126,6 @@ proc hash*(x: float): THash {.inline.} =
var y = x + 1.0
result = cast[ptr THash](addr(y))[]
proc hash*[A](x: varargs[A]): THash =
proc hash*[A](x: openarray[A]): THash =
for it in items(x): result = result !& hash(it)
result = !$result