Skip to content

Commit 65c4bb4

Browse files
committed
[Rust] Fix clippy + rustfmt complaints
The clippy complaint was a real issue: the doc comment intended for the commented-out `unresolved_indirect_branches` was being interpreted as the start of the doc comment for the following function.
1 parent 9175a5f commit 65c4bb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/src/function.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2371,8 +2371,8 @@ impl Function {
23712371
unsafe { BNHasUnresolvedIndirectBranches(self.handle) }
23722372
}
23732373

2374-
/// List of address of unresolved indirect branches
23752374
/*
2375+
/// List of address of unresolved indirect branches
23762376
pub fn unresolved_indirect_branches(&self) -> Array<Arch> {
23772377
let mut count = 0;
23782378
let result = unsafe { BNGetUnresolvedIndirectBranches(self.handle, &mut count) };

0 commit comments

Comments
 (0)