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 {
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
You can’t perform that action at this time.
0 commit comments