diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-10-22 01:21:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-22 01:21:59 +0200 |
| commit | 59faa20156d5f0482acdf7359271b7abeae8fd20 (patch) | |
| tree | d36838f723fbd0e20bbf4f4aa716d4f09a77b2dd | |
| parent | 38337c2159c9ecca1cb44b2915351c7352267ca7 (diff) | |
| parent | 20bda8d5f41e4188a6e5db14967071ad3adcad56 (diff) | |
| download | rust-59faa20156d5f0482acdf7359271b7abeae8fd20.tar.gz rust-59faa20156d5f0482acdf7359271b7abeae8fd20.zip | |
Rollup merge of #37286 - srinivasreddy:graph, r=nrc
run rustfmt on graph folder
| -rw-r--r-- | src/librustc_data_structures/graph/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_data_structures/graph/mod.rs b/src/librustc_data_structures/graph/mod.rs index 4561a3d084c..fdb629ca5a5 100644 --- a/src/librustc_data_structures/graph/mod.rs +++ b/src/librustc_data_structures/graph/mod.rs @@ -380,7 +380,7 @@ impl<'g, N: Debug, E: Debug> DepthFirstTraversal<'g, N, E> { graph: graph, stack: vec![], visited: visited, - direction: direction + direction: direction, } } @@ -394,7 +394,7 @@ impl<'g, N: Debug, E: Debug> DepthFirstTraversal<'g, N, E> { graph: graph, stack: vec![start_node], visited: visited, - direction: direction + direction: direction, } } |
