mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
Fix missing cast
This commit is contained in:
parent
49a85bd946
commit
c8ad4a2ca2
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ pub fn files_to_documentations(
|
|||
&std_lib,
|
||||
src_dir.as_path(),
|
||||
MutMap::default(),
|
||||
std::mem::size_of::<usize>(), // This is just type-checking for docs, so "target" doesn't matter
|
||||
std::mem::size_of::<usize>() as u32, // This is just type-checking for docs, so "target" doesn't matter
|
||||
builtin_defs_map,
|
||||
) {
|
||||
Ok(loaded) => files_docs.push((loaded.documentation, loaded.interns)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue