Rollup merge of #108917 - Ayush1325:tidy-improve, r=workingjubilee
Consider target_family as pal Currently, tidy does not consider code in target_family as platform-specific. This is erroneous and should be fixed. r? `@workingjubilee`
This commit is contained in:
commit
972ea7fd84
@ -62,6 +62,8 @@
|
||||
"library/std/src/panic.rs", // fuchsia-specific panic backtrace handling
|
||||
"library/std/src/personality.rs",
|
||||
"library/std/src/personality/",
|
||||
"library/std/src/thread/mod.rs",
|
||||
"library/std/src/thread/local.rs",
|
||||
];
|
||||
|
||||
pub fn check(path: &Path, bad: &mut bool) {
|
||||
@ -128,6 +130,7 @@ fn check_cfgs(
|
||||
|| cfg.contains("target_env")
|
||||
|| cfg.contains("target_abi")
|
||||
|| cfg.contains("target_vendor")
|
||||
|| cfg.contains("target_family")
|
||||
|| cfg.contains("unix")
|
||||
|| cfg.contains("windows");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user