Skip to content

Commit 750ea38

Browse files
committed
set issue = none for proc_macro_internals
1 parent be8f3eb commit 750ea38

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

library/proc_macro/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#![warn(unreachable_pub)]
3737
#![deny(unsafe_op_in_unsafe_fn)]
3838

39-
#[unstable(feature = "proc_macro_internals", issue = "27812")]
39+
#[unstable(feature = "proc_macro_internals", issue = "none")]
4040
#[doc(hidden)]
4141
pub mod bridge;
4242

@@ -462,7 +462,7 @@ pub macro quote($($t:tt)*) {
462462
/* compiler built-in */
463463
}
464464

465-
#[unstable(feature = "proc_macro_internals", issue = "27812")]
465+
#[unstable(feature = "proc_macro_internals", issue = "none")]
466466
#[doc(hidden)]
467467
mod quote;
468468

@@ -622,14 +622,14 @@ impl Span {
622622

623623
// Used by the implementation of `Span::quote`
624624
#[doc(hidden)]
625-
#[unstable(feature = "proc_macro_internals", issue = "27812")]
625+
#[unstable(feature = "proc_macro_internals", issue = "none")]
626626
pub fn save_span(&self) -> usize {
627627
BridgeMethods::span_save_span(self.0)
628628
}
629629

630630
// Used by the implementation of `Span::quote`
631631
#[doc(hidden)]
632-
#[unstable(feature = "proc_macro_internals", issue = "27812")]
632+
#[unstable(feature = "proc_macro_internals", issue = "none")]
633633
pub fn recover_proc_macro_span(id: usize) -> Span {
634634
Span(BridgeMethods::span_recover_proc_macro_span(id))
635635
}

0 commit comments

Comments
 (0)