1045: super:: in this case is just crate:: in disguise. r=MarkMcCaskey a=nlewycky



Co-authored-by: Nick Lewycky <nick@wasmer.io>
This commit is contained in:
bors[bot] 2019-12-07 04:48:32 +00:00 committed by GitHub
commit 71b342e5b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(),
)