Run 'cargo fmt'

This commit is contained in:
Aaron Hill 2019-10-29 09:51:44 -04:00
parent 476b675976
commit ca2d53e281
No known key found for this signature in database
GPG Key ID: B4087E510E98B164
2 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,8 @@ fn main() {
rustc_minor_nightly().expect("Failed to get rustc version");
let rustc_dep_of_std = env::var("CARGO_FEATURE_RUSTC_DEP_OF_STD").is_ok();
let align_cargo_feature = env::var("CARGO_FEATURE_ALIGN").is_ok();
let const_extern_fn_cargo_feature = env::var("CARGO_FEATURE_CONST_EXTERN_FN").is_ok();
let const_extern_fn_cargo_feature =
env::var("CARGO_FEATURE_CONST_EXTERN_FN").is_ok();
let libc_ci = env::var("LIBC_CI").is_ok();
if env::var("CARGO_FEATURE_USE_STD").is_ok() {
@ -103,7 +104,8 @@ fn rustc_minor_nightly() -> Option<(u32, bool)> {
let minor = pieces.next();
let nightly_raw = otry!(otry!(pieces.next()).split('-').nth(1));
let nightly = nightly_raw.starts_with("dev") || nightly_raw.starts_with("nightly");
let nightly =
nightly_raw.starts_with("dev") || nightly_raw.starts_with("nightly");
let minor = otry!(otry!(minor).parse().ok());
Some((minor, nightly))

View File

@ -1,5 +1,5 @@
#![cfg(libc_const_extern_fn)] // If this does not hold, the file is empty
#[cfg(target_os = "linux")]
const _FOO: libc::c_uint = unsafe { libc::CMSG_SPACE(1) };
const _FOO: libc::c_uint = unsafe { libc::CMSG_SPACE(1) };
//^ if CMSG_SPACE is not const, this will fail to compile