Skip to content

Commit

Permalink
Rollup merge of rust-lang#128368 - nnethercote:rustfmt-tweaks, r=cuviper
Browse files Browse the repository at this point in the history
Formatting tweaks

Some small post-rust-lang#125443 formatting tweaks.

r? ``@cuviper``
  • Loading branch information
matthiaskrgr authored Aug 3, 2024
2 parents 0ee09fe + 93b2f7c commit 975dc19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,6 @@ mod panicking;
#[allow(dead_code, unused_attributes, fuzzy_provenance_casts, unsafe_op_in_unsafe_fn)]
mod backtrace_rs;

// Re-export macros defined in core.
#[unstable(feature = "cfg_match", issue = "115585")]
pub use core::cfg_match;
#[unstable(
Expand All @@ -686,6 +685,7 @@ pub use core::{
env, file, format_args, format_args_nl, include, include_bytes, include_str, line, log_syntax,
module_path, option_env, stringify, trace_macros,
};
// Re-export macros defined in core.
#[stable(feature = "rust1", since = "1.0.0")]
#[allow(deprecated, deprecated_in_future)]
pub use core::{
Expand Down
1 change: 1 addition & 0 deletions std/src/sys/pal/sgx/thread.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![cfg_attr(test, allow(dead_code))] // why is this necessary?

use super::abi::usercalls;
use super::unsupported;
use crate::ffi::CStr;
Expand Down
1 change: 1 addition & 0 deletions std/src/sys/pal/windows/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pub mod netc {
//!
//! Some Windows API types are not quite what's expected by our cross-platform
//! net code. E.g. naming differences or different pointer types.
use core::ffi::{c_char, c_int, c_uint, c_ulong, c_ushort, c_void};

use crate::sys::c::{self, ADDRESS_FAMILY, ADDRINFOA, SOCKADDR, SOCKET};
Expand Down

0 comments on commit 975dc19

Please sign in to comment.