Skip to content

Commit bc843fd

Browse files
committed
Revert clippy's path to the copy intrinsics (part of reverting PR 81238).
1 parent f4f535b commit bc843fd

File tree

1 file changed

+2
-2
lines changed
  • src/tools/clippy/clippy_utils/src

1 file changed

+2
-2
lines changed

src/tools/clippy/clippy_utils/src/paths.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ pub const PERMISSIONS_FROM_MODE: [&str; 7] = ["std", "sys", "unix", "ext", "fs",
105105
pub const POLL: [&str; 4] = ["core", "task", "poll", "Poll"];
106106
pub const POLL_PENDING: [&str; 5] = ["core", "task", "poll", "Poll", "Pending"];
107107
pub const POLL_READY: [&str; 5] = ["core", "task", "poll", "Poll", "Ready"];
108-
pub const PTR_COPY: [&str; 4] = ["core", "intrinsics", "", "copy"];
109-
pub const PTR_COPY_NONOVERLAPPING: [&str; 4] = ["core", "intrinsics", "", "copy_nonoverlapping"];
108+
pub const PTR_COPY: [&str; 3] = ["core", "intrinsics", "copy"];
109+
pub const PTR_COPY_NONOVERLAPPING: [&str; 3] = ["core", "intrinsics", "copy_nonoverlapping"];
110110
pub const PTR_EQ: [&str; 3] = ["core", "ptr", "eq"];
111111
pub const PTR_NULL: [&str; 3] = ["core", "ptr", "null"];
112112
pub const PTR_NULL_MUT: [&str; 3] = ["core", "ptr", "null_mut"];

0 commit comments

Comments
 (0)