diff options
| author | bors <bors@rust-lang.org> | 2023-11-06 12:08:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-11-06 12:08:40 +0000 |
| commit | e1fcecb1b9930f109a8c1cf2b690e03483a41289 (patch) | |
| tree | 36eeb7c4b66e5b6c65b1c779776b6fce056642b1 /compiler/rustc_session/src/code_stats.rs | |
| parent | 6bf2fb3679a990f9c54dfb10b11cd20af47b961e (diff) | |
| parent | b88d62e2224f0bd07aa4367f477384a5fe6c630b (diff) | |
Auto merge of #117630 - matthiaskrgr:rollup-v0d5p3f, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #117592 (Use the correct span when emitting the `env!` result) - #117613 (Remove from vacation and compiler review group) - #117615 (Couple of small changes) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_session/src/code_stats.rs')
| -rw-r--r-- | compiler/rustc_session/src/code_stats.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/code_stats.rs b/compiler/rustc_session/src/code_stats.rs index f792b8f2cdd..e1eb58fecc7 100644 --- a/compiler/rustc_session/src/code_stats.rs +++ b/compiler/rustc_session/src/code_stats.rs @@ -226,7 +226,7 @@ impl CodeStats { } } - pub fn print_vtable_sizes(&self, crate_name: &str) { + pub fn print_vtable_sizes(&self, crate_name: Symbol) { let mut infos = std::mem::take(&mut *self.vtable_sizes.lock()).into_values().collect::<Vec<_>>(); |
