]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy errors
authorJordan Rhee <jordanrh@microsoft.com>
Fri, 7 Sep 2018 15:41:16 +0000 (08:41 -0700)
committerJordan Rhee <jordanrh@microsoft.com>
Fri, 7 Sep 2018 15:41:16 +0000 (08:41 -0700)
src/libpanic_unwind/seh.rs
src/libstd/sys/windows/c.rs

index 8333477a8416e30480cfd40ae28051e35a224c72..832a0aff71be1b6e4dc434de60245ed7673b653a 100644 (file)
@@ -119,8 +119,6 @@ macro_rules! ptr {
     }
 }
 
-// TODO: this needs to be validated when WinEH for ARM is implemented in LLVM
-// It looks like ARM and ARM64 use the same _TypeInfo semantics as x64
 #[cfg(any(target_arch = "x86_64", target_arch = "arm"))]
 #[macro_use]
 mod imp {
index dc0eb244155382f22a0c36102d22d7e2a674fd3e..f4bd9c22bb93fc1d1637c2d8e8a0d4088cd69c4d 100644 (file)
@@ -833,7 +833,8 @@ pub struct CONTEXT {
 // will not appear in the final documentation. This should be also defined for
 // other architectures supported by Windows such as ARM, and for historical
 // interest, maybe MIPS and PowerPC as well.
-#[cfg(all(rustdoc, not(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64", target_arch = "arm"))))]
+#[cfg(all(rustdoc, not(any(target_arch = "x86_64", target_arch = "x86",
+      target_arch = "aarch64", target_arch = "arm"))))]
 pub enum CONTEXT {}
 
 #[cfg(target_arch = "aarch64")]