From 35593f99df7415ac25ccd5e19175ed1e60de8489 Mon Sep 17 00:00:00 2001 From: Seebs Date: Fri, 22 Mar 2019 15:45:06 -0500 Subject: [PATCH] move comment to right place --- roaring/roaring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roaring/roaring.go b/roaring/roaring.go index 2a8e015de..cbe1ab067 100644 --- a/roaring/roaring.go +++ b/roaring/roaring.go @@ -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 }