From ba0202f29c113e6071552c7ec57c697cd5edc9d8 Mon Sep 17 00:00:00 2001 From: Predrag Gruevski Date: Fri, 26 Jul 2024 01:14:42 +0000 Subject: [PATCH] Fix new lint introduced in Rust 1.80. --- trustfall_core/src/interpreter/hints/vertex_info.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/trustfall_core/src/interpreter/hints/vertex_info.rs b/trustfall_core/src/interpreter/hints/vertex_info.rs index 60ab67e1..3f5d3503 100644 --- a/trustfall_core/src/interpreter/hints/vertex_info.rs +++ b/trustfall_core/src/interpreter/hints/vertex_info.rs @@ -124,6 +124,7 @@ pub(super) trait InternalVertexInfo: super::sealed::__Sealed { /// How far query execution has progressed thus far: /// - `Bound::Included` means that data from that [`Vid`] is available, and /// - `Bound::Excluded` means that data from that [`Vid`] is not yet available. + /// /// Data from vertices with [`Vid`] values smaller than the given number is always available. fn execution_frontier(&self) -> Bound;