From d227f19f8df9a496f2f855cb6af770bc2aa5a984 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Fri, 6 Dec 2019 17:51:15 -0800 Subject: [PATCH] super:: in this case is just crate:: in disguise. --- lib/runtime/src/cache.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runtime/src/cache.rs b/lib/runtime/src/cache.rs index 714fd9f54..30e08c1a0 100644 --- a/lib/runtime/src/cache.rs +++ b/lib/runtime/src/cache.rs @@ -104,7 +104,7 @@ impl Cache for FileSystemCache { unsafe { wasmer_runtime_core::load_cache_with( serialized_cache, - super::compiler_for_backend(backend) + crate::compiler_for_backend(backend) .ok_or_else(|| CacheError::UnsupportedBackend(backend))? .as_ref(), )