You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/src/ffi/va_list.rs
-106Lines changed: 0 additions & 106 deletions
Original file line number
Diff line number
Diff line change
@@ -24,12 +24,6 @@ use crate::ops::{Deref, DerefMut};
24
24
windows,
25
25
))]
26
26
#[cfg_attr(not(doc), repr(transparent))]// work around https://github.com/rust-lang/rust/issues/90435
27
-
#[unstable(
28
-
feature = "c_variadic",
29
-
reason = "the `c_variadic` feature has not been properly tested on \
30
-
all supported platforms",
31
-
issue = "44930"
32
-
)]
33
27
#[lang = "va_list"]
34
28
pubstructVaListImpl<'f>{
35
29
ptr:*mutc_void,
@@ -51,12 +45,6 @@ pub struct VaListImpl<'f> {
51
45
target_os = "uefi",
52
46
windows,
53
47
))]
54
-
#[unstable(
55
-
feature = "c_variadic",
56
-
reason = "the `c_variadic` feature has not been properly tested on \
@@ -76,12 +64,6 @@ impl<'f> fmt::Debug for VaListImpl<'f> {
76
64
))]
77
65
#[cfg_attr(not(doc), repr(C))]// work around https://github.com/rust-lang/rust/issues/66401
78
66
#[derive(Debug)]
79
-
#[unstable(
80
-
feature = "c_variadic",
81
-
reason = "the `c_variadic` feature has not been properly tested on \
#[cfg_attr(not(doc), repr(C))]// work around https://github.com/rust-lang/rust/issues/66401
98
80
#[derive(Debug)]
99
-
#[unstable(
100
-
feature = "c_variadic",
101
-
reason = "the `c_variadic` feature has not been properly tested on \
102
-
all supported platforms",
103
-
issue = "44930"
104
-
)]
105
81
#[lang = "va_list"]
106
82
pubstructVaListImpl<'f>{
107
83
gpr:u8,
@@ -116,12 +92,6 @@ pub struct VaListImpl<'f> {
116
92
#[cfg(target_arch = "s390x")]
117
93
#[cfg_attr(not(doc), repr(C))]// work around https://github.com/rust-lang/rust/issues/66401
118
94
#[derive(Debug)]
119
-
#[unstable(
120
-
feature = "c_variadic",
121
-
reason = "the `c_variadic` feature has not been properly tested on \
#[cfg_attr(not(doc), repr(C))]// work around https://github.com/rust-lang/rust/issues/66401
137
107
#[derive(Debug)]
138
-
#[unstable(
139
-
feature = "c_variadic",
140
-
reason = "the `c_variadic` feature has not been properly tested on \
141
-
all supported platforms",
142
-
issue = "44930"
143
-
)]
144
108
#[lang = "va_list"]
145
109
pubstructVaListImpl<'f>{
146
110
gp_offset:i32,
@@ -153,12 +117,6 @@ pub struct VaListImpl<'f> {
153
117
/// A wrapper for a `va_list`
154
118
#[cfg_attr(not(doc), repr(transparent))]// work around https://github.com/rust-lang/rust/issues/90435
155
119
#[derive(Debug)]
156
-
#[unstable(
157
-
feature = "c_variadic",
158
-
reason = "the `c_variadic` feature has not been properly tested on \
0 commit comments