File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -129,12 +129,16 @@ cfg_if! {
129
129
// [0]: https://github.com/rust-lang/rust/issues/54341
130
130
131
131
/// C `__int128` (a GCC extension that's part of many ABIs)
132
+ #[ deprecated( since = "1.0" , note = "Use i128 instead." ) ]
132
133
pub type __int128 = i128 ;
133
134
/// C `unsigned __int128` (a GCC extension that's part of many ABIs)
135
+ #[ deprecated( since = "1.0" , note = "Use u128 instead." ) ]
134
136
pub type __uint128 = u128 ;
135
137
/// C __int128_t (alternate name for [__int128][])
138
+ #[ deprecated( since = "1.0" , note = "Use i128 instead." ) ]
136
139
pub type __int128_t = i128 ;
137
140
/// C __uint128_t (alternate name for [__uint128][])
141
+ #[ deprecated( since = "1.0" , note = "Use u128 instead." ) ]
138
142
pub type __uint128_t = u128 ;
139
143
140
144
// NOTE: if you add more platforms to here, you may need to cfg
@@ -181,8 +185,10 @@ cfg_if! {
181
185
)
182
186
) ) ] {
183
187
/// C `__int128_t`
188
+ #[ deprecated( since = "1.0" , note = "Use i128 instead." ) ]
184
189
pub type __int128_t = i128 ;
185
190
/// C `__uint128_t`
191
+ #[ deprecated( since = "1.0" , note = "Use ux128 instead." ) ]
186
192
pub type __uint128_t = u128 ;
187
193
}
188
194
}
You can’t perform that action at this time.
0 commit comments