Skip to content

Commit

Permalink
fix core builds
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshuawuyts committed Mar 17, 2024
1 parent 46ab3f4 commit d451e92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/private.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/// We hide the `Try` trait in a private module, as it's only meant to be a
/// stable clone of the standard library's `Try` trait, as yet unstable.
// NOTE: copied from `rayon`
use std::convert::Infallible;
use std::ops::ControlFlow::{self, Break, Continue};
use std::task::Poll;
use core::convert::Infallible;
use core::ops::ControlFlow::{self, Break, Continue};
use core::task::Poll;

use crate::{private_decl, private_impl};

Expand Down

0 comments on commit d451e92

Please sign in to comment.