move comment to right place

This commit is contained in:
Seebs 2019-03-22 15:45:06 -05:00
parent bdbd9c1f47
commit 35593f99df

View file

@ -2110,12 +2110,12 @@ func (c *Container) Clone() (out *Container) {
copy(runs, cRuns)
out = NewContainerRun(runs)
}
// this should probably never happen
if roaringParanoia {
if out.n != out.count() {
panic("cloned container has wrong n")
}
}
// this should probably never happen
return out
}