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 @@ -731,7 +731,8 @@ impl ClangSubItemParser for Function {
731
731
if visibility != CXVisibility_Default {
732
732
return Err ( ParseError :: Continue ) ;
733
733
}
734
- if cursor. access_specifier ( ) == CX_CXXPrivate && !context. options ( ) . generate_private_functions {
734
+ if cursor. access_specifier ( ) == CX_CXXPrivate &&
735
+ !context. options ( ) . generate_private_functions {
735
736
return Err ( ParseError :: Continue ) ;
736
737
}
737
738
@@ -751,7 +752,8 @@ impl ClangSubItemParser for Function {
751
752
return Err ( ParseError :: Continue ) ;
752
753
}
753
754
754
- if cursor. is_deleted_function ( ) && !context. options ( ) . generate_deleted_functions {
755
+ if cursor. is_deleted_function ( ) &&
756
+ !context. options ( ) . generate_deleted_functions {
755
757
return Err ( ParseError :: Continue ) ;
756
758
}
757
759
You can’t perform that action at this time.
0 commit comments