Skip to content

Commit a4ad5db

Browse files
Fix tidy line-length issue.
1 parent f726634 commit a4ad5db

File tree

1 file changed

+2
-1
lines changed
  • src/librustc_incremental/persist

1 file changed

+2
-1
lines changed

src/librustc_incremental/persist/save.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ fn encode_dep_graph(tcx: TyCtxt,
189189

190190
let total_node_count = serialized_graph.nodes.len();
191191
let total_edge_count = serialized_graph.edge_list_data.len();
192-
let (total_edge_reads, total_duplicate_edge_reads) = tcx.dep_graph.edge_deduplication_data();
192+
let (total_edge_reads, total_duplicate_edge_reads) =
193+
tcx.dep_graph.edge_deduplication_data();
193194

194195
let mut counts: FxHashMap<_, Stat> = FxHashMap();
195196

0 commit comments

Comments
 (0)