mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
disable printing of type clone count
This commit is contained in:
parent
d3c6f00c77
commit
64287ea783
1 changed files with 6 additions and 0 deletions
|
@ -2039,6 +2039,12 @@ fn finish_specialization(
|
|||
subs: Subs,
|
||||
exposed_to_host: ExposedToHost,
|
||||
) -> Result<MonomorphizedModule, LoadingProblem> {
|
||||
if false {
|
||||
println!(
|
||||
"total Type clones: {} ",
|
||||
roc_types::types::get_type_clone_count()
|
||||
);
|
||||
}
|
||||
let module_ids = Arc::try_unwrap(state.arc_modules)
|
||||
.unwrap_or_else(|_| panic!("There were still outstanding Arc references to module_ids"))
|
||||
.into_inner()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue