From 35e5d5468325e6fbaa75702882fb0d0bccadbc8d Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 14 Jan 2022 15:48:22 +0100 Subject: [PATCH] Silence warning --- implementations/rust/preserves-schema/src/support/interpret.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/rust/preserves-schema/src/support/interpret.rs b/implementations/rust/preserves-schema/src/support/interpret.rs index 23781a0..b517452 100644 --- a/implementations/rust/preserves-schema/src/support/interpret.rs +++ b/implementations/rust/preserves-schema/src/support/interpret.rs @@ -38,7 +38,7 @@ impl<'a, V: NestedValue> Context<'a, V> { result } - pub fn dynamic_unparse(&mut self, module: &Vec, name: &str, w: &V) -> Option { + pub fn dynamic_unparse(&mut self, _module: &Vec, _name: &str, _w: &V) -> Option { panic!("Not yet implemented"); } }