Merge pull request #379 from est31/master
Remove redundant 'static from &'static str
This commit is contained in:
commit
aac04e7263
|
@ -6,11 +6,11 @@ use std::env;
|
|||
use std::path::PathBuf;
|
||||
use walkdir::WalkDir;
|
||||
|
||||
const CPAL_ASIO_DIR: &'static str = "CPAL_ASIO_DIR";
|
||||
const CPAL_ASIO_DIR: &str = "CPAL_ASIO_DIR";
|
||||
|
||||
const ASIO_HEADER: &'static str = "asio.h";
|
||||
const ASIO_SYS_HEADER: &'static str = "asiosys.h";
|
||||
const ASIO_DRIVERS_HEADER: &'static str = "asiodrivers.h";
|
||||
const ASIO_HEADER: &str = "asio.h";
|
||||
const ASIO_SYS_HEADER: &str = "asiosys.h";
|
||||
const ASIO_DRIVERS_HEADER: &str = "asiodrivers.h";
|
||||
|
||||
fn main() {
|
||||
// If ASIO directory isn't set silently return early
|
||||
|
|
2
build.rs
2
build.rs
|
@ -1,6 +1,6 @@
|
|||
use std::env;
|
||||
|
||||
const CPAL_ASIO_DIR: &'static str = "CPAL_ASIO_DIR";
|
||||
const CPAL_ASIO_DIR: &str = "CPAL_ASIO_DIR";
|
||||
|
||||
fn main() {
|
||||
// If ASIO directory isn't set silently return early
|
||||
|
|
|
@ -25,7 +25,7 @@ fn main() -> Result<(), anyhow::Error> {
|
|||
.expect("Failed to get default input config");
|
||||
println!("Default input config: {:?}", config);
|
||||
// The WAV file we're recording to.
|
||||
const PATH: &'static str = concat!(env!("CARGO_MANIFEST_DIR"), "/recorded.wav");
|
||||
const PATH: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/recorded.wav");
|
||||
let spec = wav_spec_from_config(&config);
|
||||
let writer = hound::WavWriter::create(PATH, spec)?;
|
||||
let writer = Arc::new(Mutex::new(Some(writer)));
|
||||
|
|
Loading…
Reference in New Issue