@@ -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 " ) ]
5353extern {
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 " ) ]
7878struct 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 " ) ]
9494struct 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 " ) ]
110110struct 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) ]
125125pub 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 " ) ]
167167impl < 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 " ) ]
172172impl < T > sealed_trait:: VaArgSafe for * const T { }
173173
174174impl < ' 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" ) ,
0 commit comments