Skip to content

Commit

Permalink
Update doc(include) paths.
Browse files Browse the repository at this point in the history
Since rust-lang/rust#60938 the path root changed and
these new paths are required to compile on nightly.
  • Loading branch information
hdevalence committed Jul 31, 2019
1 parent 09e2615 commit 0d1f7bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/backend/vector/avx2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// missing).
#![cfg_attr(
all(feature = "nightly", feature = "stage2_build"),
doc(include = "../docs/avx2-notes.md")
doc(include = "../../docs/avx2-notes.md")
)]

pub(crate) mod field;
Expand Down
2 changes: 1 addition & 1 deletion src/backend/vector/ifma/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#![cfg_attr(
all(feature = "nightly", feature = "stage2_build"),
doc(include = "../docs/ifma-notes.md")
doc(include = "../../docs/ifma-notes.md")
)]

pub mod field;
Expand Down
2 changes: 1 addition & 1 deletion src/backend/vector/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// missing).
#![cfg_attr(
all(feature = "nightly", feature = "stage2_build"),
doc(include = "../docs/parallel-formulas.md")
doc(include = "../../docs/parallel-formulas.md")
)]

#[cfg(not(any(target_feature = "avx2", target_feature = "avx512ifma", rustdoc)))]
Expand Down

0 comments on commit 0d1f7bc

Please sign in to comment.