We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e16a8de commit bd513faCopy full SHA for bd513fa
bindgen/ir/function.rs
@@ -734,7 +734,8 @@ impl ClangSubItemParser for Function {
734
if visibility != CXVisibility_Default {
735
return Err(ParseError::Continue);
736
}
737
- if cursor.access_specifier() == CX_CXXPrivate && !context.options().generate_private_functions {
+ if cursor.access_specifier() == CX_CXXPrivate &&
738
+ !context.options().generate_private_functions {
739
740
741
@@ -754,7 +755,8 @@ impl ClangSubItemParser for Function {
754
755
756
757
- if cursor.is_deleted_function() && !context.options().generate_deleted_functions {
758
+ if cursor.is_deleted_function() &&
759
+ !context.options().generate_deleted_functions {
760
761
762
0 commit comments