1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 07:44:48 -05:00

fix(ext/fs): fix MaybeArc when not sync_fs (#19950)

This commit is contained in:
Matt Mastracci 2023-07-26 11:33:42 -04:00 committed by GitHub
parent 89ba3f820c
commit 53e077133f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,8 @@ mod inner {
#[cfg(not(feature = "sync_fs"))]
mod inner {
use std::ops::Deref;
use std::ops::DerefMut;
pub use std::rc::Rc as MaybeArc;
pub trait MaybeSync {}