File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -57,11 +57,6 @@ impl Builder {
57
57
self . clang_arg ( header)
58
58
}
59
59
60
- pub fn match_pat < T : Into < String > > ( mut self , arg : T ) -> Builder {
61
- self . options . match_pat . insert ( arg. into ( ) ) ;
62
- self
63
- }
64
-
65
60
pub fn hide_type < T : Into < String > > ( mut self , arg : T ) -> Builder {
66
61
self . options . hidden_types . insert ( arg. into ( ) ) ;
67
62
self
@@ -159,7 +154,6 @@ impl Builder {
159
154
/// Deprecated - use a `Builder` instead
160
155
#[ derive( Debug ) ]
161
156
pub struct BindgenOptions {
162
- pub match_pat : HashSet < String > ,
163
157
pub hidden_types : HashSet < String > ,
164
158
pub opaque_types : HashSet < String > ,
165
159
pub whitelisted_types : RegexSet ,
@@ -194,7 +188,6 @@ pub struct BindgenOptions {
194
188
impl Default for BindgenOptions {
195
189
fn default ( ) -> BindgenOptions {
196
190
BindgenOptions {
197
- match_pat : Default :: default ( ) ,
198
191
hidden_types : Default :: default ( ) ,
199
192
opaque_types : Default :: default ( ) ,
200
193
whitelisted_types : Default :: default ( ) ,
You can’t perform that action at this time.
0 commit comments