summaryrefslogtreecommitdiff
path: root/spew/internal_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'spew/internal_test.go')
-rw-r--r--spew/internal_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/spew/internal_test.go b/spew/internal_test.go
index faac638..10dc0b1 100644
--- a/spew/internal_test.go
+++ b/spew/internal_test.go
@@ -81,12 +81,6 @@ func TestInvalidReflectValue(t *testing.T) {
}
}
-// flagRO, flagKindShift and flagKindWidth indicate various bit flags that the
-// reflect package uses internally to track kind and state information.
-const flagRO = 1 << 0
-const flagKindShift = 4
-const flagKindWidth = 5
-
// changeKind uses unsafe to intentionally change the kind of a reflect.Value to
// the maximum kind value which does not exist. This is needed to test the
// fallback code which punts to the standard fmt library for new types that