Skip to content

Commit 12ff7a0

Browse files
committed
Use new tracking issue for proc_macro::tracked_*.
1 parent acdcdfb commit 12ff7a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: library/proc_macro/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ impl fmt::Debug for Literal {
13851385
}
13861386

13871387
/// Tracked access to environment variables.
1388-
#[unstable(feature = "proc_macro_tracked_env", issue = "74690")]
1388+
#[unstable(feature = "proc_macro_tracked_env", issue = "99515")]
13891389
pub mod tracked_env {
13901390
use std::env::{self, VarError};
13911391
use std::ffi::OsStr;
@@ -1395,7 +1395,7 @@ pub mod tracked_env {
13951395
/// compilation, and will be able to rerun the build when the value of that variable changes.
13961396
/// Besides the dependency tracking this function should be equivalent to `env::var` from the
13971397
/// standard library, except that the argument must be UTF-8.
1398-
#[unstable(feature = "proc_macro_tracked_env", issue = "74690")]
1398+
#[unstable(feature = "proc_macro_tracked_env", issue = "99515")]
13991399
pub fn var<K: AsRef<OsStr> + AsRef<str>>(key: K) -> Result<String, VarError> {
14001400
let key: &str = key.as_ref();
14011401
let value = env::var(key);
@@ -1405,13 +1405,13 @@ pub mod tracked_env {
14051405
}
14061406

14071407
/// Tracked access to additional files.
1408-
#[unstable(feature = "track_path", issue = "73921")]
1408+
#[unstable(feature = "track_path", issue = "99515")]
14091409
pub mod tracked_path {
14101410

14111411
/// Track a file explicitly.
14121412
///
14131413
/// Commonly used for tracking asset preprocessing.
1414-
#[unstable(feature = "track_path", issue = "73921")]
1414+
#[unstable(feature = "track_path", issue = "99515")]
14151415
pub fn path<P: AsRef<str>>(path: P) {
14161416
let path: &str = path.as_ref();
14171417
crate::bridge::client::FreeFunctions::track_path(path);

0 commit comments

Comments
 (0)