Skip to content

Commit 572238e

Browse files
committed
Further formatting fix.
1 parent e932199 commit 572238e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bindgen/ir/function.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,8 @@ impl ClangSubItemParser for Function {
732732
return Err(ParseError::Continue);
733733
}
734734
if cursor.access_specifier() == CX_CXXPrivate &&
735-
!context.options().generate_private_functions {
735+
!context.options().generate_private_functions
736+
{
736737
return Err(ParseError::Continue);
737738
}
738739

@@ -753,7 +754,8 @@ impl ClangSubItemParser for Function {
753754
}
754755

755756
if cursor.is_deleted_function() &&
756-
!context.options().generate_deleted_functions {
757+
!context.options().generate_deleted_functions
758+
{
757759
return Err(ParseError::Continue);
758760
}
759761

0 commit comments

Comments
 (0)