@@ -52,7 +52,7 @@ impl fmt::Debug for c_void {
52
52
#[ unstable( feature = "c_variadic" ,
53
53
reason = "the `c_variadic` feature has not been properly tested on \
54
54
all supported platforms",
55
- issue = "27745 " ) ]
55
+ issue = "44930 " ) ]
56
56
extern {
57
57
type VaListImpl ;
58
58
}
@@ -77,7 +77,7 @@ impl fmt::Debug for VaListImpl {
77
77
#[ unstable( feature = "c_variadic" ,
78
78
reason = "the `c_variadic` feature has not been properly tested on \
79
79
all supported platforms",
80
- issue = "27745 " ) ]
80
+ issue = "44930 " ) ]
81
81
struct VaListImpl {
82
82
stack : * mut ( ) ,
83
83
gr_top : * mut ( ) ,
@@ -93,7 +93,7 @@ struct VaListImpl {
93
93
#[ unstable( feature = "c_variadic" ,
94
94
reason = "the `c_variadic` feature has not been properly tested on \
95
95
all supported platforms",
96
- issue = "27745 " ) ]
96
+ issue = "44930 " ) ]
97
97
struct VaListImpl {
98
98
gpr : u8 ,
99
99
fpr : u8 ,
@@ -109,7 +109,7 @@ struct VaListImpl {
109
109
#[ unstable( feature = "c_variadic" ,
110
110
reason = "the `c_variadic` feature has not been properly tested on \
111
111
all supported platforms",
112
- issue = "27745 " ) ]
112
+ issue = "44930 " ) ]
113
113
struct VaListImpl {
114
114
gp_offset : i32 ,
115
115
fp_offset : i32 ,
@@ -123,7 +123,7 @@ struct VaListImpl {
123
123
#[ unstable( feature = "c_variadic" ,
124
124
reason = "the `c_variadic` feature has not been properly tested on \
125
125
all supported platforms",
126
- issue = "27745 " ) ]
126
+ issue = "44930 " ) ]
127
127
#[ repr( transparent) ]
128
128
pub struct VaList < ' a > ( & ' a mut VaListImpl ) ;
129
129
@@ -143,7 +143,7 @@ mod sealed_trait {
143
143
#[ unstable( feature = "c_variadic" ,
144
144
reason = "the `c_variadic` feature has not been properly tested on \
145
145
all supported platforms",
146
- issue = "27745 " ) ]
146
+ issue = "44930 " ) ]
147
147
pub trait VaArgSafe { }
148
148
}
149
149
@@ -153,7 +153,7 @@ macro_rules! impl_va_arg_safe {
153
153
#[ unstable( feature = "c_variadic" ,
154
154
reason = "the `c_variadic` feature has not been properly tested on \
155
155
all supported platforms",
156
- issue = "27745 " ) ]
156
+ issue = "44930 " ) ]
157
157
impl sealed_trait:: VaArgSafe for $t { }
158
158
) +
159
159
}
@@ -166,20 +166,20 @@ impl_va_arg_safe!{f64}
166
166
#[ unstable( feature = "c_variadic" ,
167
167
reason = "the `c_variadic` feature has not been properly tested on \
168
168
all supported platforms",
169
- issue = "27745 " ) ]
169
+ issue = "44930 " ) ]
170
170
impl < T > sealed_trait:: VaArgSafe for * mut T { }
171
171
#[ unstable( feature = "c_variadic" ,
172
172
reason = "the `c_variadic` feature has not been properly tested on \
173
173
all supported platforms",
174
- issue = "27745 " ) ]
174
+ issue = "44930 " ) ]
175
175
impl < T > sealed_trait:: VaArgSafe for * const T { }
176
176
177
177
impl < ' a > VaList < ' a > {
178
178
/// Advance to the next arg.
179
179
#[ unstable( feature = "c_variadic" ,
180
180
reason = "the `c_variadic` feature has not been properly tested on \
181
181
all supported platforms",
182
- issue = "27745 " ) ]
182
+ issue = "44930 " ) ]
183
183
pub unsafe fn arg < T : sealed_trait:: VaArgSafe > ( & mut self ) -> T {
184
184
va_arg ( self )
185
185
}
@@ -188,7 +188,7 @@ impl<'a> VaList<'a> {
188
188
#[ unstable( feature = "c_variadic" ,
189
189
reason = "the `c_variadic` feature has not been properly tested on \
190
190
all supported platforms",
191
- issue = "27745 " ) ]
191
+ issue = "44930 " ) ]
192
192
pub unsafe fn copy < F , R > ( & self , f : F ) -> R
193
193
where F : for < ' copy > FnOnce ( VaList < ' copy > ) -> R {
194
194
#[ cfg( any( all( not( target_arch = "aarch64" ) , not( target_arch = "powerpc" ) ,
0 commit comments