Skip to content

Commit cf7650f

Browse files
committed
fix
1 parent ae5df68 commit cf7650f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/symbol-check/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ fn verify_core_symbols(path: impl AsRef<Path>) {
117117
let mut undefined = Vec::new();
118118

119119
for_each_symbol(path, |sym, member| {
120-
if cfg!(wasm) {
120+
if cfg!(target_family = "wasm") {
121121
let info = SymInfo::new(&sym, member);
122122
println!("{info:?}");
123123
}

0 commit comments

Comments
 (0)