File tree 1 file changed +0
-8
lines changed 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -107,11 +107,6 @@ impl Builder {
107
107
self
108
108
}
109
109
110
- pub fn dtor_attr < T : Into < String > > ( mut self , attr : T ) -> Builder {
111
- self . options . dtor_attrs . push ( attr. into ( ) ) ;
112
- self
113
- }
114
-
115
110
pub fn forbid_unknown_types ( mut self ) -> Builder {
116
111
self . options . fail_on_unknown_type = true ;
117
112
self
@@ -180,8 +175,6 @@ pub struct BindgenOptions {
180
175
pub msvc_mangling : bool ,
181
176
pub override_enum_ty : String ,
182
177
pub raw_lines : Vec < String > ,
183
- /// Attributes for a type with destructor
184
- pub dtor_attrs : Vec < String > ,
185
178
pub clang_args : Vec < String > ,
186
179
}
187
180
@@ -210,7 +203,6 @@ impl Default for BindgenOptions {
210
203
namespaced_constants : true ,
211
204
msvc_mangling : false ,
212
205
raw_lines : vec ! [ ] ,
213
- dtor_attrs : vec ! [ ] ,
214
206
clang_args : vec ! [ ] ,
215
207
}
216
208
}
You can’t perform that action at this time.
0 commit comments