From ec4e476cc6aefe8a01544e0c216f5e0b8583e71d Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 4 Mar 2019 13:51:13 +0100 Subject: [PATCH] fix(runtime-core) Remove an unused import. This patch removes an unused import, namely `crate::sys::Memory`. --- lib/runtime-core/src/error.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/runtime-core/src/error.rs b/lib/runtime-core/src/error.rs index abc69cc5e..0e2ab6eb7 100644 --- a/lib/runtime-core/src/error.rs +++ b/lib/runtime-core/src/error.rs @@ -1,4 +1,3 @@ -use crate::sys::Memory; use crate::types::{ FuncSig, GlobalDescriptor, MemoryDescriptor, MemoryIndex, TableDescriptor, TableIndex, Type, };