Skip to content

Commit eb82aa1

Browse files
committed
Delete unused Cargo.toml
1 parent c030d83 commit eb82aa1

2 files changed

Lines changed: 2 additions & 16 deletions

File tree

tests/benchmarks/out/unsafe/bfs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub unsafe fn BFS_0(graph: *const Graph, mut start_vertex: u32) -> *mut u32 {
6262
let mut Q: Queue = Queue {
6363
elems: Box::leak(
6464
(0..((*graph).V as u64))
65-
.map(|_| 0 as u32)
65+
.map(|_| 0_u32)
6666
.collect::<Box<[u32]>>(),
6767
)
6868
.as_mut_ptr(),
@@ -78,7 +78,7 @@ pub unsafe fn BFS_0(graph: *const Graph, mut start_vertex: u32) -> *mut u32 {
7878
.as_mut_ptr();
7979
let mut pred: *mut u32 = Box::leak(
8080
(0..((*graph).V as u64))
81-
.map(|_| 0 as u32)
81+
.map(|_| 0_u32)
8282
.collect::<Box<[u32]>>(),
8383
)
8484
.as_mut_ptr();

tests/unit/Cargo.toml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)