From dd7eb92d68e8c8292d6359f42a74888878de0560 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Wed, 9 Aug 2017 13:24:03 -0500 Subject: [PATCH] Fix warnings on macOS --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.rs b/src/window.rs index 342e9b7c..83274f83 100644 --- a/src/window.rs +++ b/src/window.rs @@ -313,7 +313,7 @@ impl Window { } #[cfg(not(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "openbsd")))] - pub fn send_xim_spot(&self, x: i16, y: i16) { + pub fn send_xim_spot(&self, _x: i16, _y: i16) { } #[cfg(not(target_os = "macos"))]