Skip to content

Commit a5a6811

Browse files
authored
Rollup merge of #99516 - m-ou-se:proc-macro-tracked-tracking-issue, r=Mark-Simulacrum
Use new tracking issue for proc_macro::tracked_*.
2 parents 2638f3a + 12ff7a0 commit a5a6811

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/proc_macro/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1484,7 +1484,7 @@ impl fmt::Debug for Literal {
14841484
}
14851485

14861486
/// Tracked access to environment variables.
1487-
#[unstable(feature = "proc_macro_tracked_env", issue = "74690")]
1487+
#[unstable(feature = "proc_macro_tracked_env", issue = "99515")]
14881488
pub mod tracked_env {
14891489
use std::env::{self, VarError};
14901490
use std::ffi::OsStr;
@@ -1494,7 +1494,7 @@ pub mod tracked_env {
14941494
/// compilation, and will be able to rerun the build when the value of that variable changes.
14951495
/// Besides the dependency tracking this function should be equivalent to `env::var` from the
14961496
/// standard library, except that the argument must be UTF-8.
1497-
#[unstable(feature = "proc_macro_tracked_env", issue = "74690")]
1497+
#[unstable(feature = "proc_macro_tracked_env", issue = "99515")]
14981498
pub fn var<K: AsRef<OsStr> + AsRef<str>>(key: K) -> Result<String, VarError> {
14991499
let key: &str = key.as_ref();
15001500
let value = env::var(key);
@@ -1504,13 +1504,13 @@ pub mod tracked_env {
15041504
}
15051505

15061506
/// Tracked access to additional files.
1507-
#[unstable(feature = "track_path", issue = "73921")]
1507+
#[unstable(feature = "track_path", issue = "99515")]
15081508
pub mod tracked_path {
15091509

15101510
/// Track a file explicitly.
15111511
///
15121512
/// Commonly used for tracking asset preprocessing.
1513-
#[unstable(feature = "track_path", issue = "73921")]
1513+
#[unstable(feature = "track_path", issue = "99515")]
15141514
pub fn path<P: AsRef<str>>(path: P) {
15151515
let path: &str = path.as_ref();
15161516
crate::bridge::client::FreeFunctions::track_path(path);

0 commit comments

Comments
 (0)