Skip to content

Commit b838dd7

Browse files
committed
Apply review comments
1 parent 35f1338 commit b838dd7

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
@@ -63,10 +63,6 @@ pub use crate::{
6363
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,
6464
};
6565

66-
#[unstable(feature = "ub_checks", issue = "none")]
67-
#[doc(no_inline)]
68-
pub use crate::assert_unsafe_precondition;
69-
7066
#[unstable(feature = "cfg_match", issue = "115585")]
7167
#[doc(no_inline)]
7268
pub use crate::cfg_match;
@@ -91,15 +87,6 @@ pub use crate::concat_idents;
9187
#[doc(no_inline)]
9288
pub use crate::const_format_args;
9389

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

library/std/src/prelude/v1.rs

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

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

library/std/src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ use crate::path::Path;
169169
use crate::sys::pipe::{AnonPipe, read2};
170170
use crate::sys::process as imp;
171171
use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
172-
use crate::{fmt, fs, str};
172+
use crate::{fmt, format_args_nl, fs, str};
173173

174174
/// Representation of a running or exited child process.
175175
///

0 commit comments

Comments
 (0)