We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242153e commit 83c659fCopy full SHA for 83c659f
objdiff-core/src/obj/read.rs
@@ -74,11 +74,13 @@ fn map_symbol(
74
{
75
flags |= SymbolFlag::Hidden;
76
}
77
- if file.format() == object::BinaryFormat::Coff
78
- {
79
- match symbol.name(){
+ if file.format() == object::BinaryFormat::Coff {
+ match symbol.name() {
80
Ok(name) => {
81
- if name.starts_with("except_data_") || name.starts_with("__unwind") || name.starts_with("__catch") {
+ if name.starts_with("except_data_")
+ || name.starts_with("__unwind")
82
+ || name.starts_with("__catch")
83
+ {
84
85
86
0 commit comments