Skip to content

Commit 2ac3f32

Browse files
committed
Apply review comments
1 parent 14db115 commit 2ac3f32

File tree

3 files changed

+1
-23
lines changed

3 files changed

+1
-23
lines changed

library/core/src/prelude/v1.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ pub use crate::{
6464
assert, assert_eq, assert_ne, cfg, column, compile_error, concat, debug_assert, debug_assert_eq, debug_assert_ne, env, file, format_args, include, include_bytes, include_str, line, matches, module_path, option_env, panic, stringify, todo, r#try, unimplemented, unreachable, write, writeln,
6565
};
6666

67-
#[unstable(feature = "ub_checks", issue = "none")]
68-
#[doc(no_inline)]
69-
pub use crate::assert_unsafe_precondition;
70-
7167
#[unstable(feature = "cfg_match", issue = "115585")]
7268
#[doc(no_inline)]
7369
pub use crate::cfg_match;
@@ -92,15 +88,6 @@ pub use crate::concat_idents;
9288
#[doc(no_inline)]
9389
pub use crate::const_format_args;
9490

95-
#[unstable(
96-
feature = "format_args_nl",
97-
issue = "none",
98-
reason = "`format_args_nl` is only for internal \
99-
language use and is subject to change"
100-
)]
101-
#[doc(no_inline)]
102-
pub use crate::format_args_nl;
103-
10491
#[unstable(
10592
feature = "log_syntax",
10693
issue = "29598",

library/std/src/prelude/v1.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,6 @@ pub use core::prelude::v1::concat_idents;
8383
#[doc(no_inline)]
8484
pub use core::prelude::v1::const_format_args;
8585

86-
#[unstable(
87-
feature = "format_args_nl",
88-
issue = "none",
89-
reason = "`format_args_nl` is only for internal \
90-
language use and is subject to change"
91-
)]
92-
#[doc(no_inline)]
93-
pub use core::prelude::v1::format_args_nl;
94-
9586
#[unstable(
9687
feature = "log_syntax",
9788
issue = "29598",

library/std/src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ use crate::sys::process as imp;
171171
#[stable(feature = "command_access", since = "1.57.0")]
172172
pub use crate::sys_common::process::CommandEnvs;
173173
use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
174-
use crate::{fmt, fs, str};
174+
use crate::{fmt, format_args_nl, fs, str};
175175

176176
/// Representation of a running or exited child process.
177177
///

0 commit comments

Comments
 (0)