From aa9cb99929ee1893699184ded888b2586455f016 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Mon, 21 Sep 2015 14:42:05 +0200 Subject: Add #[inline] attributes --- src/api/x11/monitor.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/api/x11/monitor.rs') diff --git a/src/api/x11/monitor.rs b/src/api/x11/monitor.rs index 90b12c2..0a20b63 100644 --- a/src/api/x11/monitor.rs +++ b/src/api/x11/monitor.rs @@ -15,6 +15,7 @@ pub fn get_available_monitors(x: &Arc) -> VecDeque { monitors } +#[inline] pub fn get_primary_monitor(x: &Arc) -> MonitorID { let primary_monitor = unsafe { (x.xlib.XDefaultScreen)(x.display) }; MonitorID(x.clone(), primary_monitor as u32) @@ -26,6 +27,7 @@ impl MonitorID { Some(format!("Monitor #{}", screen_num)) } + #[inline] pub fn get_native_identifier(&self) -> NativeMonitorId { NativeMonitorId::Numeric(self.1) } -- cgit v1.2.3