Skip to content

Commit b390917

Browse files
committed
Fix warning.
1 parent caf4765 commit b390917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindgen/ir/function.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ impl ClangSubItemParser for Function {
935935
Some(SpecialMemberKind::CopyConstructor)
936936
} else if cursor.is_move_constructor() {
937937
Some(SpecialMemberKind::MoveConstructor)
938-
} else if cursor.kind() == clang_sys::CXCursor_Destructor {
938+
} else if cursor.kind() == CXCursor_Destructor {
939939
Some(SpecialMemberKind::Destructor)
940940
} else {
941941
None

0 commit comments

Comments
 (0)