Skip to content

Commit 2f21e4f

Browse files
committed
coverage: Tidy imports in rustc_mir_transform::coverage::counters
1 parent 85bec7a commit 2f21e4f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/rustc_mir_transform/src/coverage/counters.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1+
use std::fmt::{self, Debug};
2+
13
use rustc_data_structures::captures::Captures;
24
use rustc_data_structures::fx::FxHashMap;
35
use rustc_data_structures::graph::WithNumNodes;
46
use rustc_index::IndexVec;
5-
use rustc_middle::mir::coverage::*;
7+
use rustc_middle::mir::coverage::{CounterId, CovTerm, Expression, ExpressionId, Op};
68

7-
use super::graph::{BasicCoverageBlock, CoverageGraph, TraverseCoverageGraphWithLoops};
8-
9-
use std::fmt::{self, Debug};
9+
use crate::coverage::graph::{BasicCoverageBlock, CoverageGraph, TraverseCoverageGraphWithLoops};
1010

1111
/// The coverage counter or counter expression associated with a particular
1212
/// BCB node or BCB edge.

0 commit comments

Comments
 (0)