@@ -49,7 +49,7 @@ impl fmt::Debug for c_void {
49
49
#[ unstable( feature = "c_variadic" ,
50
50
reason = "the `c_variadic` feature has not been properly tested on \
51
51
all supported platforms",
52
- issue = "27745 " ) ]
52
+ issue = "44930 " ) ]
53
53
extern {
54
54
type VaListImpl ;
55
55
}
@@ -74,7 +74,7 @@ impl fmt::Debug for VaListImpl {
74
74
#[ unstable( feature = "c_variadic" ,
75
75
reason = "the `c_variadic` feature has not been properly tested on \
76
76
all supported platforms",
77
- issue = "27745 " ) ]
77
+ issue = "44930 " ) ]
78
78
struct VaListImpl {
79
79
stack : * mut ( ) ,
80
80
gr_top : * mut ( ) ,
@@ -90,7 +90,7 @@ struct VaListImpl {
90
90
#[ unstable( feature = "c_variadic" ,
91
91
reason = "the `c_variadic` feature has not been properly tested on \
92
92
all supported platforms",
93
- issue = "27745 " ) ]
93
+ issue = "44930 " ) ]
94
94
struct VaListImpl {
95
95
gpr : u8 ,
96
96
fpr : u8 ,
@@ -106,7 +106,7 @@ struct VaListImpl {
106
106
#[ unstable( feature = "c_variadic" ,
107
107
reason = "the `c_variadic` feature has not been properly tested on \
108
108
all supported platforms",
109
- issue = "27745 " ) ]
109
+ issue = "44930 " ) ]
110
110
struct VaListImpl {
111
111
gp_offset : i32 ,
112
112
fp_offset : i32 ,
@@ -120,7 +120,7 @@ struct VaListImpl {
120
120
#[ unstable( feature = "c_variadic" ,
121
121
reason = "the `c_variadic` feature has not been properly tested on \
122
122
all supported platforms",
123
- issue = "27745 " ) ]
123
+ issue = "44930 " ) ]
124
124
#[ repr( transparent) ]
125
125
pub struct VaList < ' a > ( & ' a mut VaListImpl ) ;
126
126
@@ -140,7 +140,7 @@ mod sealed_trait {
140
140
#[ unstable( feature = "c_variadic" ,
141
141
reason = "the `c_variadic` feature has not been properly tested on \
142
142
all supported platforms",
143
- issue = "27745 " ) ]
143
+ issue = "44930 " ) ]
144
144
pub trait VaArgSafe { }
145
145
}
146
146
@@ -150,7 +150,7 @@ macro_rules! impl_va_arg_safe {
150
150
#[ unstable( feature = "c_variadic" ,
151
151
reason = "the `c_variadic` feature has not been properly tested on \
152
152
all supported platforms",
153
- issue = "27745 " ) ]
153
+ issue = "44930 " ) ]
154
154
impl sealed_trait:: VaArgSafe for $t { }
155
155
) +
156
156
}
@@ -163,20 +163,20 @@ impl_va_arg_safe!{f64}
163
163
#[ unstable( feature = "c_variadic" ,
164
164
reason = "the `c_variadic` feature has not been properly tested on \
165
165
all supported platforms",
166
- issue = "27745 " ) ]
166
+ issue = "44930 " ) ]
167
167
impl < T > sealed_trait:: VaArgSafe for * mut T { }
168
168
#[ unstable( feature = "c_variadic" ,
169
169
reason = "the `c_variadic` feature has not been properly tested on \
170
170
all supported platforms",
171
- issue = "27745 " ) ]
171
+ issue = "44930 " ) ]
172
172
impl < T > sealed_trait:: VaArgSafe for * const T { }
173
173
174
174
impl < ' a > VaList < ' a > {
175
175
/// Advance to the next arg.
176
176
#[ unstable( feature = "c_variadic" ,
177
177
reason = "the `c_variadic` feature has not been properly tested on \
178
178
all supported platforms",
179
- issue = "27745 " ) ]
179
+ issue = "44930 " ) ]
180
180
pub unsafe fn arg < T : sealed_trait:: VaArgSafe > ( & mut self ) -> T {
181
181
va_arg ( self )
182
182
}
@@ -185,7 +185,7 @@ impl<'a> VaList<'a> {
185
185
#[ unstable( feature = "c_variadic" ,
186
186
reason = "the `c_variadic` feature has not been properly tested on \
187
187
all supported platforms",
188
- issue = "27745 " ) ]
188
+ issue = "44930 " ) ]
189
189
pub unsafe fn copy < F , R > ( & self , f : F ) -> R
190
190
where F : for < ' copy > FnOnce ( VaList < ' copy > ) -> R {
191
191
#[ cfg( any( all( not( target_arch = "aarch64" ) , not( target_arch = "powerpc" ) ,
0 commit comments