From 4edd34895c7d7e3e4529039e9c6f812b53fe2a0f Mon Sep 17 00:00:00 2001 From: Denis Smirnov <sd@picodata.io> Date: Sat, 5 Feb 2022 12:30:42 +0700 Subject: [PATCH] refactoring: remove redundant pub(crate) for IR nodes arena --- src/ir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ir.rs b/src/ir.rs index 2f88f98106..4f2ff144a2 100644 --- a/src/ir.rs +++ b/src/ir.rs @@ -47,7 +47,7 @@ pub struct Nodes { /// so all nodes are stored in the single arena ("nodes" array). /// The positions in the array act like pointers, so it is possible /// only to add nodes to the plan, but never remove them. - pub(crate) arena: Vec<Node>, + arena: Vec<Node>, } impl Nodes { -- GitLab