mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
fix: count all symbols to err on the side of over allocating
This commit is contained in:
parent
3fe2a4cd13
commit
43f970f813
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ pub(crate) fn preprocess_windows(
|
||||||
Err(e) => internal_error!("Failed to parse shared library file: {e}"),
|
Err(e) => internal_error!("Failed to parse shared library file: {e}"),
|
||||||
};
|
};
|
||||||
let dummy_dll_symbols = shared_lib_obj
|
let dummy_dll_symbols = shared_lib_obj
|
||||||
.dynamic_symbols()
|
.symbols()
|
||||||
.filter(is_roc_definition)
|
.filter(is_roc_definition)
|
||||||
.count();
|
.count();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue