From 41991dee4b22e6106918d24056b6034a6b645879 Mon Sep 17 00:00:00 2001 From: evan-forbes Date: Wed, 17 Aug 2022 02:13:54 -0500 Subject: [PATCH] delete unused struct --- pkg/inclusion/paths.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/inclusion/paths.go b/pkg/inclusion/paths.go index 093ff31784..30f8e29183 100644 --- a/pkg/inclusion/paths.go +++ b/pkg/inclusion/paths.go @@ -1,10 +1,5 @@ package inclusion -type path struct { - instructions []bool - row int -} - // genSubTreeRootPath calculates the path to a given subtree root of a node, given the // depth and position of the node. note: the root of the tree is depth 0. func genSubTreeRootPath(depth int, pos uint) []bool {