aboutsummaryrefslogtreecommitdiff
path: root/font/src/ft/fc/object_set.rs
diff options
context:
space:
mode:
Diffstat (limited to 'font/src/ft/fc/object_set.rs')
-rw-r--r--font/src/ft/fc/object_set.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/font/src/ft/fc/object_set.rs b/font/src/ft/fc/object_set.rs
index 42e03f64..47d11674 100644
--- a/font/src/ft/fc/object_set.rs
+++ b/font/src/ft/fc/object_set.rs
@@ -24,8 +24,13 @@ foreign_type! {
}
impl ObjectSet {
- #[allow(dead_code)]
- pub fn new() -> ObjectSet {
+ pub fn new() -> Self {
+ Self::default()
+ }
+}
+
+impl Default for ObjectSet {
+ fn default() -> Self {
ObjectSet(unsafe {
FcObjectSetCreate()
})