super:: in this case is just crate:: in disguise.

This commit is contained in:
Nick Lewycky
2019-12-06 17:51:15 -08:00
parent a180721eb9
commit d227f19f8d

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