Remove redundant 'static from library crates
This commit is contained in:
parent
98e16884b1
commit
a687420d17
4 changed files with 12 additions and 12 deletions
|
@ -253,9 +253,9 @@ macro_rules! repeat {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const SHORT: &'static str = "Alice's";
|
const SHORT: &str = "Alice's";
|
||||||
const MEDIUM: &'static str = "Alice's Adventures in Wonderland";
|
const MEDIUM: &str = "Alice's Adventures in Wonderland";
|
||||||
const LONG: &'static str = repeat!(
|
const LONG: &str = repeat!(
|
||||||
r#"
|
r#"
|
||||||
La Guida di Bragia, a Ballad Opera for the Marionette Theatre (around 1850)
|
La Guida di Bragia, a Ballad Opera for the Marionette Theatre (around 1850)
|
||||||
Alice's Adventures in Wonderland (1865)
|
Alice's Adventures in Wonderland (1865)
|
||||||
|
|
|
@ -68,7 +68,7 @@ fn bind_udp_socket_bad() {
|
||||||
// returns its own address, it is still an error to bind a UDP socket to
|
// returns its own address, it is still an error to bind a UDP socket to
|
||||||
// a non-local address, and so we still get an error here in that case.
|
// a non-local address, and so we still get an error here in that case.
|
||||||
|
|
||||||
const INPUT_23076: &'static str = "1200::AB00:1234::2552:7777:1313:34300";
|
const INPUT_23076: &str = "1200::AB00:1234::2552:7777:1313:34300";
|
||||||
|
|
||||||
assert!(crate::net::UdpSocket::bind(INPUT_23076).is_err())
|
assert!(crate::net::UdpSocket::bind(INPUT_23076).is_err())
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
pub mod os {
|
pub mod os {
|
||||||
pub const FAMILY: &'static str = "";
|
pub const FAMILY: &str = "";
|
||||||
pub const OS: &'static str = "";
|
pub const OS: &str = "";
|
||||||
pub const DLL_PREFIX: &'static str = "";
|
pub const DLL_PREFIX: &str = "";
|
||||||
pub const DLL_SUFFIX: &'static str = ".sgxs";
|
pub const DLL_SUFFIX: &str = ".sgxs";
|
||||||
pub const DLL_EXTENSION: &'static str = "sgxs";
|
pub const DLL_EXTENSION: &str = "sgxs";
|
||||||
pub const EXE_SUFFIX: &'static str = ".sgxs";
|
pub const EXE_SUFFIX: &str = ".sgxs";
|
||||||
pub const EXE_EXTENSION: &'static str = "sgxs";
|
pub const EXE_EXTENSION: &str = "sgxs";
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,5 +15,5 @@ pub fn parse_prefix(_: &OsStr) -> Option<Prefix<'_>> {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const MAIN_SEP_STR: &'static str = "/";
|
pub const MAIN_SEP_STR: &str = "/";
|
||||||
pub const MAIN_SEP: char = '/';
|
pub const MAIN_SEP: char = '/';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue