File tree 2 files changed +0
-3
lines changed
2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ impl MacroArgsVisitor for BindgenArgsVisitor {
101
101
Some ( "link_framework" ) => self . options . links . push ( ( val. to_string ( ) , LinkType :: Framework ) ) ,
102
102
Some ( "match" ) => self . options . match_pat . push ( val. to_string ( ) ) ,
103
103
Some ( "clang_args" ) => self . options . clang_args . push ( val. to_string ( ) ) ,
104
- Some ( "enum_type" ) => self . options . override_enum_ty = val. to_string ( ) ,
105
104
_ => return false
106
105
}
107
106
true
Original file line number Diff line number Diff line change @@ -145,7 +145,6 @@ pub struct BindgenOptions {
145
145
pub namespaced_constants : bool ,
146
146
/// Whether to use msvc mangling rules
147
147
pub msvc_mangling : bool ,
148
- pub override_enum_ty : String ,
149
148
pub raw_lines : Vec < String > ,
150
149
pub clang_args : Vec < String > ,
151
150
}
@@ -165,7 +164,6 @@ impl Default for BindgenOptions {
165
164
ignore_methods : false ,
166
165
derive_debug : true ,
167
166
enable_cxx_namespaces : false ,
168
- override_enum_ty : "" . to_string ( ) ,
169
167
unstable_rust : true ,
170
168
namespaced_constants : true ,
171
169
msvc_mangling : false ,
You can’t perform that action at this time.
0 commit comments