From bd0b3c7dcf3dbd017d831fb77640d0e2ed65f1c6 Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 27 Mar 2024 22:28:38 +0100 Subject: [PATCH] fix(generate/convert/host/rust/derive/structure): Ignore `ptr` arg on todo --- src/macros/generate/convert/host/rust/derive/structure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros/generate/convert/host/rust/derive/structure.rs b/src/macros/generate/convert/host/rust/derive/structure.rs index f7227f2..7f8f8cd 100644 --- a/src/macros/generate/convert/host/rust/derive/structure.rs +++ b/src/macros/generate/convert/host/rust/derive/structure.rs @@ -52,7 +52,7 @@ impl Structure { } } - fn from_ptr(ptr: Self::Ptr) -> Result { + fn from_ptr(_ptr: Self::Ptr) -> Result { todo!() } }