Skip to content

Commit 624aef8

Browse files
committed
Do not make parse_one public
`parse_one` was never supposed to be public and it uses a bunch of non-public types as a parameters, so downstream crates wouldn't be able to call it anyways.
1 parent fc63260 commit 624aef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1677,7 +1677,7 @@ fn filter_builtins(ctx: &BindgenContext, cursor: &clang::Cursor) -> bool {
16771677
}
16781678

16791679
/// Parse one `Item` from the Clang cursor.
1680-
pub fn parse_one(
1680+
fn parse_one(
16811681
ctx: &mut BindgenContext,
16821682
cursor: clang::Cursor,
16831683
parent: Option<ItemId>,

0 commit comments

Comments
 (0)