Silence warnings
This commit is contained in:
parent
fc70c6d4fd
commit
3d9c39d0eb
2 changed files with 1 additions and 6 deletions
|
@ -951,10 +951,6 @@ impl WrapPoint {
|
||||||
pub fn column_mut(&mut self) -> &mut u32 {
|
pub fn column_mut(&mut self) -> &mut u32 {
|
||||||
&mut self.0.column
|
&mut self.0.column
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn is_zero(&self) -> bool {
|
|
||||||
self.0.is_zero()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl sum_tree::Summary for TransformSummary {
|
impl sum_tree::Summary for TransformSummary {
|
||||||
|
|
|
@ -14,7 +14,6 @@ use std::{
|
||||||
collections::HashMap,
|
collections::HashMap,
|
||||||
future::Future,
|
future::Future,
|
||||||
io::Write,
|
io::Write,
|
||||||
rc::Rc,
|
|
||||||
str::FromStr,
|
str::FromStr,
|
||||||
sync::{
|
sync::{
|
||||||
atomic::{AtomicUsize, Ordering::SeqCst},
|
atomic::{AtomicUsize, Ordering::SeqCst},
|
||||||
|
@ -473,7 +472,7 @@ pub struct FakeLanguageServer {
|
||||||
buffer: Vec<u8>,
|
buffer: Vec<u8>,
|
||||||
stdin: smol::io::BufReader<async_pipe::PipeReader>,
|
stdin: smol::io::BufReader<async_pipe::PipeReader>,
|
||||||
stdout: smol::io::BufWriter<async_pipe::PipeWriter>,
|
stdout: smol::io::BufWriter<async_pipe::PipeWriter>,
|
||||||
executor: Rc<executor::Foreground>,
|
executor: std::rc::Rc<executor::Foreground>,
|
||||||
pub started: Arc<std::sync::atomic::AtomicBool>,
|
pub started: Arc<std::sync::atomic::AtomicBool>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue