about summary refs log tree commit diff
path: root/compiler/rustc_incremental
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-12-10 22:40:36 +0100
committerGitHub <noreply@github.com>2021-12-10 22:40:36 +0100
commit40988591ecd806fbbfe61db8b5cd05cff33e22d6 (patch)
tree5c5e486f63cb5c203d88fb5274b1639abf7a986f /compiler/rustc_incremental
parent6cfe9af6a074b842198176d21170e49ee0cc6add (diff)
parent15de4cbc4b49be2fbf082fe02f877d5f774569a5 (diff)
downloadrust-40988591ecd806fbbfe61db8b5cd05cff33e22d6.tar.gz
rust-40988591ecd806fbbfe61db8b5cd05cff33e22d6.zip
Rollup merge of #91625 - est31:remove_indexes, r=oli-obk
Remove redundant [..]s
Diffstat (limited to 'compiler/rustc_incremental')
-rw-r--r--compiler/rustc_incremental/src/persist/load.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_incremental/src/persist/load.rs b/compiler/rustc_incremental/src/persist/load.rs
index 9cae4e91818..d563a6ca478 100644
--- a/compiler/rustc_incremental/src/persist/load.rs
+++ b/compiler/rustc_incremental/src/persist/load.rs
@@ -164,7 +164,7 @@ pub fn load_dep_graph(sess: &Session) -> DepGraphFuture {
                                     compilation session directory: {}",
                         e
                     );
-                    sess.fatal(&msg[..])
+                    sess.fatal(&msg)
                 });
 
             for swp in work_products {