Skip to content

Commit 54a16ae

Browse files
committed
Fix tidy errors
1 parent b081a49 commit 54a16ae

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/libpanic_unwind/seh.rs

-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@ mod imp {
119119
}
120120
}
121121

122-
// TODO: this needs to be validated when WinEH for ARM is implemented in LLVM
123-
// It looks like ARM and ARM64 use the same _TypeInfo semantics as x64
124122
#[cfg(any(target_arch = "x86_64", target_arch = "arm"))]
125123
#[macro_use]
126124
mod imp {

src/libstd/sys/windows/c.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,8 @@ pub struct CONTEXT {
833833
// will not appear in the final documentation. This should be also defined for
834834
// other architectures supported by Windows such as ARM, and for historical
835835
// interest, maybe MIPS and PowerPC as well.
836-
#[cfg(all(rustdoc, not(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64", target_arch = "arm"))))]
836+
#[cfg(all(rustdoc, not(any(target_arch = "x86_64", target_arch = "x86",
837+
target_arch = "aarch64", target_arch = "arm"))))]
837838
pub enum CONTEXT {}
838839

839840
#[cfg(target_arch = "aarch64")]

0 commit comments

Comments
 (0)