diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-01-31 16:06:44 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-01-31 16:47:00 +0100 |
| commit | 20b1a38414101f842a6d9201133a5aaaa45a7cec (patch) | |
| tree | 2365453d4dfdebfa11d618baad1a36c65b62d7c7 /src/loading/mem.rs | |
| parent | fa57d86ed981373b66804972147bf59cab920e6b (diff) | |
Switch from `Rc` to `Arc`
Diffstat (limited to 'src/loading/mem.rs')
| -rw-r--r-- | src/loading/mem.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/loading/mem.rs b/src/loading/mem.rs index 9ff02d2d..5e3e78d1 100644 --- a/src/loading/mem.rs +++ b/src/loading/mem.rs @@ -2,7 +2,7 @@ use std::borrow::Cow; use std::collections::HashMap; use std::io; use std::path::{Path, PathBuf}; -use std::rc::Rc; +use std::sync::Arc; use super::{FileHash, Loader}; use crate::font::FaceInfo; @@ -31,10 +31,10 @@ impl MemLoader { self } - /// Builder-style method to wrap the loader in an [`Rc`] to make it usable + /// Builder-style method to wrap the loader in an [`Arc`] to make it usable /// with the [`Context`](crate::Context). - pub fn wrap(self) -> Rc<Self> { - Rc::new(self) + pub fn wrap(self) -> Arc<Self> { + Arc::new(self) } /// Insert a path-file mapping. If the data forms a font, then that font |
