func()

in refcount.go [48:52]


func (c *RefCount) Retain() {
	if c.count.Add(1) == 0 {
		panic("retaining released ref count")
	}
}