Skip to content

Commit bd513fa

Browse files
adetayloremilio
authored andcommitted
Formatting fixes.
1 parent e16a8de commit bd513fa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bindgen/ir/function.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,8 @@ impl ClangSubItemParser for Function {
734734
if visibility != CXVisibility_Default {
735735
return Err(ParseError::Continue);
736736
}
737-
if cursor.access_specifier() == CX_CXXPrivate && !context.options().generate_private_functions {
737+
if cursor.access_specifier() == CX_CXXPrivate &&
738+
!context.options().generate_private_functions {
738739
return Err(ParseError::Continue);
739740
}
740741

@@ -754,7 +755,8 @@ impl ClangSubItemParser for Function {
754755
return Err(ParseError::Continue);
755756
}
756757

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

0 commit comments

Comments
 (0)