From 064f26db8f2c83024b37843ed92f686f34ac4160 Mon Sep 17 00:00:00 2001 From: Mihail Mihov Date: Fri, 12 Aug 2022 19:22:36 +0300 Subject: [PATCH] Change `QueryInputs` to `QueryEdges` --- components/salsa-2022/src/input_field.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/salsa-2022/src/input_field.rs b/components/salsa-2022/src/input_field.rs index 3a96cbf..eda51d2 100644 --- a/components/salsa-2022/src/input_field.rs +++ b/components/salsa-2022/src/input_field.rs @@ -4,7 +4,7 @@ use crate::{AsId, DatabaseKeyIndex, Durability, Id, IngredientIndex, Revision, R use crate::cycle::CycleRecoveryStrategy; use crate::ingredient::Ingredient; use crate::key::DependencyIndex; -use crate::runtime::local_state::QueryInputs; +use crate::runtime::local_state::QueryEdges; use crate::runtime::StampedValue; /// Ingredient used to represent the fields of a `#[salsa::input]`. @@ -86,7 +86,7 @@ impl Ingredient for InputFieldIngredient false } - fn inputs(&self, _key_index: crate::Id) -> Option { + fn inputs(&self, _key_index: Id) -> Option { None }