Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeehoonkang committed Mar 3, 2019
1 parent 708ab6b commit 32cf6bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ matrix:
- rust: 1.28.0
name: "crossbeam on 1.28.0"
script: ./ci/crossbeam.sh
- rust: 1.26.0
name: "crossbeam-channel on 1.26.0"
- rust: 1.28.0
name: "crossbeam-channel on 1.28.0"
script: ./ci/crossbeam-channel.sh
- rust: 1.28.0
name: "crossbeam-deque on 1.28.0"
script: ./ci/crossbeam-deque.sh
- rust: 1.26.0
name: "crossbeam-epoch on 1.26.0"
- rust: 1.28.0
name: "crossbeam-epoch on 1.28.0"
script: ./ci/crossbeam-epoch.sh
- rust: 1.26.0
name: "crossbeam-queue on 1.26.0"
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-epoch/src/storage/array_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl<T> Array<T> {
self.size
);

&self.anchor[index] as *const _
(&self.anchor as *const ManuallyDrop<T>).add(index)
}
}

Expand Down

0 comments on commit 32cf6bb

Please sign in to comment.