featurebase/roaring/nop_inst.go
2022-09-02 13:23:39 -07:00

29 lines
517 B
Go

// Copyright 2022 Molecula Corp. (DBA FeatureBase).
// SPDX-License-Identifier: Apache-2.0
//go:build !btreeInstrumentation
// +build !btreeInstrumentation
package roaring
//lint:ignore U1000 this is conditional on a build flag
//nolint:unused
type dTree struct {
}
//lint:ignore U1000 this is conditional on a build flag
//nolint:unused
type treeInst struct {
}
func (t *tree) didCopy(n int) {
}
func (d *d) didCopy(n int) {
}
func (t *tree) countCopies() int64 {
return 0
}
func (d *d) setTree(t *tree) {
}