From 11af896734354257a5491f67789fc59182e0c6b1 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Mon, 7 Aug 2017 11:16:54 -0400 Subject: [PATCH] remove unused macros This silences a couple of compiler warnings in the build. --- font/src/ft/list_fonts.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/font/src/ft/list_fonts.rs b/font/src/ft/list_fonts.rs index 7fdf625..18cc500 100644 --- a/font/src/ft/list_fonts.rs +++ b/font/src/ft/list_fonts.rs @@ -210,19 +210,6 @@ pub mod fc { } } - macro_rules! pattern_add_int { - ($($name:ident => $object:expr),*) => { - $( - #[inline] - pub fn $name(&mut self, value: &str) -> bool { - unsafe { - self.add_string($object, value) - } - } - )* - } - } - impl Pattern { pub fn new() -> Pattern { Pattern(unsafe { FcPatternCreate() }) @@ -260,23 +247,6 @@ pub mod fc { }; } - macro_rules! pattern_add_integer { - ($($method:ident() => $property:expr),+) => { - $( - pub fn $method(&self, int: isize) -> bool { - unsafe { - FcPatternAddInteger( - self.as_ptr(), - $property.as_ptr() as *mut c_char, - int as c_int, - &mut index - ) == 1 - } - } - )+ - }; - } - macro_rules! pattern_get_integer { ($($method:ident() => $property:expr),+) => { $(