mirror of
https://github.com/containers/skopeo.git
synced 2025-08-24 00:59:44 +00:00
We currently need it to drag in recent versions of other dependencies, per https://github.com/containers/skopeo/issues/796 . I'll work to update the relevant dependencies in c/image, but that will only propagate to skopeo in the next c/image release; in the meantime, this at least undoes the downgrades. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
11 lines
128 B
Go
11 lines
128 B
Go
package metrics
|
|
|
|
func sumFloat64(vs ...float64) float64 {
|
|
var sum float64
|
|
for _, v := range vs {
|
|
sum += v
|
|
}
|
|
|
|
return sum
|
|
}
|