File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1069,7 +1069,7 @@ impl<T: FontTableProvider> Font<T> {
10691069 }
10701070 }
10711071
1072- pub fn cff_table ( & mut self ) -> Result < Option < Rc < tables:: CFF > > , ParseError > {
1072+ pub fn cff_table ( & mut self ) -> Result < Option < Arc < tables:: CFF > > , ParseError > {
10731073 let provider = & self . font_table_provider ;
10741074 self . cff_cache . get_or_load ( || {
10751075 let cff_data = provider. read_table_data ( tag:: CFF ) . map ( Box :: from) ?;
@@ -1082,7 +1082,7 @@ impl<T: FontTableProvider> Font<T> {
10821082 } )
10831083 }
10841084
1085- pub fn cff2_table ( & mut self ) -> Result < Option < Rc < tables:: CFF2 > > , ParseError > {
1085+ pub fn cff2_table ( & mut self ) -> Result < Option < Arc < tables:: CFF2 > > , ParseError > {
10861086 let provider = & self . font_table_provider ;
10871087 self . cff2_cache . get_or_load ( || {
10881088 let cff_data = provider. read_table_data ( tag:: CFF2 ) . map ( Box :: from) ?;
You can’t perform that action at this time.
0 commit comments