Skip to content

Commit

Permalink
Silently ignore errors sending memory profiling data.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Nov 7, 2016
1 parent fd51bcb commit 7ad9bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/profile_traits/mem.rs
Expand Up @@ -19,7 +19,7 @@ pub trait OpaqueSender<T> {

impl<T> OpaqueSender<T> for Sender<T> {
fn send(&self, message: T) {
Sender::send(self, message).unwrap();
let _ = Sender::send(self, message);
}
}

Expand Down

0 comments on commit 7ad9bac

Please sign in to comment.