From 8a3dc611fae282daeba6dbef0d782dc939fb61e3 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Mon, 29 Jun 2020 12:22:58 +0200 Subject: [PATCH] Fix compilation warnings --- src/host/alsa/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/host/alsa/mod.rs b/src/host/alsa/mod.rs index 65490d0..53b2e0c 100644 --- a/src/host/alsa/mod.rs +++ b/src/host/alsa/mod.rs @@ -9,11 +9,11 @@ use crate::{ SupportedBufferSize, SupportedStreamConfig, SupportedStreamConfigRange, SupportedStreamConfigsError, }; +use std::cmp; use std::convert::TryInto; use std::sync::Arc; use std::thread::{self, JoinHandle}; use std::vec::IntoIter as VecIntoIter; -use std::{cmp, mem}; use traits::{DeviceTrait, HostTrait, StreamTrait}; pub use self::enumerate::{default_input_device, default_output_device, Devices}; @@ -446,7 +446,9 @@ struct StreamInner { // Minimum number of samples to put in the buffer. period_len: usize, + #[allow(dead_code)] // Whether or not the hardware supports pausing the stream. + // TODO: We need an API to expose this. See #197, #284. can_pause: bool, // In the case that the device does not return valid timestamps via `get_htstamp`, this field