diff --git a/encode_compile.go b/encode_compile.go index 04e8a76..81c62f4 100644 --- a/encode_compile.go +++ b/encode_compile.go @@ -53,24 +53,6 @@ func encodeCompileToGetCodeSetSlowPath(typeptr uintptr) (*opcodeSet, error) { return codeSet, nil } -func isIntOrUintType(typ *rtype) bool { - switch typ.Kind() { - case reflect.Int, - reflect.Int8, - reflect.Int16, - reflect.Int32, - reflect.Int64, - reflect.Uint, - reflect.Uint8, - reflect.Uint16, - reflect.Uint32, - reflect.Uint64, - reflect.Uintptr: - return true - } - return false -} - func encodeCompileHead(ctx *encodeCompileContext) (*opcode, error) { typ := ctx.typ switch {