diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2016-12-23 12:11:03 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2016-12-23 12:29:28 +0100 |
commit | 276695159b3462a625cf5c42bc07aef19cfb0a9c (patch) | |
tree | 3819cd1e0b719b5c447609963a8478a5801b0d11 /libbindgen/src/parse.rs | |
parent | cbc03042403029d3709290304b8804fec1d21bb9 (diff) |
ir: Don't parse default template parameter types.
It's a bunch of complexity we don't use nor need.
Diffstat (limited to 'libbindgen/src/parse.rs')
-rw-r--r-- | libbindgen/src/parse.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libbindgen/src/parse.rs b/libbindgen/src/parse.rs index 28e65759..0e4164f0 100644 --- a/libbindgen/src/parse.rs +++ b/libbindgen/src/parse.rs @@ -82,7 +82,6 @@ pub trait ClangItemParser: Sized { /// Create a named template type. fn named_type<S>(name: S, - default: Option<ItemId>, parent: ItemId, context: &mut BindgenContext) -> ItemId @@ -92,7 +91,6 @@ pub trait ClangItemParser: Sized { /// `ItemId`. fn named_type_with_id<S>(id: ItemId, name: S, - default: Option<ItemId>, parent: ItemId, context: &mut BindgenContext) -> ItemId |