Skip to content

Commit 6c60662

Browse files
committed
Use correct tracking issue for c_variadic
Fixes rust-lang#57306
1 parent 1f7c44c commit 6c60662

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/libcore/ffi.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl fmt::Debug for c_void {
4949
#[unstable(feature = "c_variadic",
5050
reason = "the `c_variadic` feature has not been properly tested on \
5151
all supported platforms",
52-
issue = "27745")]
52+
issue = "44930")]
5353
extern {
5454
type VaListImpl;
5555
}
@@ -74,7 +74,7 @@ impl fmt::Debug for VaListImpl {
7474
#[unstable(feature = "c_variadic",
7575
reason = "the `c_variadic` feature has not been properly tested on \
7676
all supported platforms",
77-
issue = "27745")]
77+
issue = "44930")]
7878
struct VaListImpl {
7979
stack: *mut (),
8080
gr_top: *mut (),
@@ -90,7 +90,7 @@ struct VaListImpl {
9090
#[unstable(feature = "c_variadic",
9191
reason = "the `c_variadic` feature has not been properly tested on \
9292
all supported platforms",
93-
issue = "27745")]
93+
issue = "44930")]
9494
struct VaListImpl {
9595
gpr: u8,
9696
fpr: u8,
@@ -106,7 +106,7 @@ struct VaListImpl {
106106
#[unstable(feature = "c_variadic",
107107
reason = "the `c_variadic` feature has not been properly tested on \
108108
all supported platforms",
109-
issue = "27745")]
109+
issue = "44930")]
110110
struct VaListImpl {
111111
gp_offset: i32,
112112
fp_offset: i32,
@@ -120,7 +120,7 @@ struct VaListImpl {
120120
#[unstable(feature = "c_variadic",
121121
reason = "the `c_variadic` feature has not been properly tested on \
122122
all supported platforms",
123-
issue = "27745")]
123+
issue = "44930")]
124124
#[repr(transparent)]
125125
pub struct VaList<'a>(&'a mut VaListImpl);
126126

@@ -140,7 +140,7 @@ mod sealed_trait {
140140
#[unstable(feature = "c_variadic",
141141
reason = "the `c_variadic` feature has not been properly tested on \
142142
all supported platforms",
143-
issue = "27745")]
143+
issue = "44930")]
144144
pub trait VaArgSafe {}
145145
}
146146

@@ -150,7 +150,7 @@ macro_rules! impl_va_arg_safe {
150150
#[unstable(feature = "c_variadic",
151151
reason = "the `c_variadic` feature has not been properly tested on \
152152
all supported platforms",
153-
issue = "27745")]
153+
issue = "44930")]
154154
impl sealed_trait::VaArgSafe for $t {}
155155
)+
156156
}
@@ -163,20 +163,20 @@ impl_va_arg_safe!{f64}
163163
#[unstable(feature = "c_variadic",
164164
reason = "the `c_variadic` feature has not been properly tested on \
165165
all supported platforms",
166-
issue = "27745")]
166+
issue = "44930")]
167167
impl<T> sealed_trait::VaArgSafe for *mut T {}
168168
#[unstable(feature = "c_variadic",
169169
reason = "the `c_variadic` feature has not been properly tested on \
170170
all supported platforms",
171-
issue = "27745")]
171+
issue = "44930")]
172172
impl<T> sealed_trait::VaArgSafe for *const T {}
173173

174174
impl<'a> VaList<'a> {
175175
/// Advance to the next arg.
176176
#[unstable(feature = "c_variadic",
177177
reason = "the `c_variadic` feature has not been properly tested on \
178178
all supported platforms",
179-
issue = "27745")]
179+
issue = "44930")]
180180
pub unsafe fn arg<T: sealed_trait::VaArgSafe>(&mut self) -> T {
181181
va_arg(self)
182182
}
@@ -185,7 +185,7 @@ impl<'a> VaList<'a> {
185185
#[unstable(feature = "c_variadic",
186186
reason = "the `c_variadic` feature has not been properly tested on \
187187
all supported platforms",
188-
issue = "27745")]
188+
issue = "44930")]
189189
pub unsafe fn copy<F, R>(&self, f: F) -> R
190190
where F: for<'copy> FnOnce(VaList<'copy>) -> R {
191191
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),

src/libstd/ffi/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub use core::ffi::c_void;
169169
#[unstable(feature = "c_variadic",
170170
reason = "the `c_variadic` feature has not been properly tested on \
171171
all supported platforms",
172-
issue = "27745")]
172+
issue = "44930")]
173173
pub use core::ffi::VaList;
174174

175175
mod c_str;

0 commit comments

Comments
 (0)