Skip to content

Commit

Permalink
Fix warnings on X11
Browse files Browse the repository at this point in the history
  • Loading branch information
micahrj committed Dec 17, 2023
1 parent 348bc9f commit e27ac9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/x11/window.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::marker::PhantomData;
use std::os::raw::{c_ulong, c_void};
use std::os::raw::c_void;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::mpsc;
use std::sync::Arc;
Expand Down Expand Up @@ -724,6 +724,6 @@ fn mouse_id(id: u8) -> MouseButton {
}
}

pub fn copy_to_clipboard(data: &str) {
pub fn copy_to_clipboard(_data: &str) {
todo!()
}

0 comments on commit e27ac9b

Please sign in to comment.