File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -734,7 +734,8 @@ impl ClangSubItemParser for Function {
734
734
if visibility != CXVisibility_Default {
735
735
return Err ( ParseError :: Continue ) ;
736
736
}
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 {
738
739
return Err ( ParseError :: Continue ) ;
739
740
}
740
741
@@ -754,7 +755,8 @@ impl ClangSubItemParser for Function {
754
755
return Err ( ParseError :: Continue ) ;
755
756
}
756
757
757
- if cursor. is_deleted_function ( ) && !context. options ( ) . generate_deleted_functions {
758
+ if cursor. is_deleted_function ( ) &&
759
+ !context. options ( ) . generate_deleted_functions {
758
760
return Err ( ParseError :: Continue ) ;
759
761
}
760
762
You can’t perform that action at this time.
0 commit comments