about summary refs log tree commit diff
path: root/src/libstd/sys/windows
diff options
context:
space:
mode:
authorJordan Rhee <jordanrh@microsoft.com>2018-09-07 08:41:16 -0700
committerJordan Rhee <jordanrh@microsoft.com>2018-09-07 08:41:16 -0700
commit54a16aea6a3b6a765ebf1821d339456c87f6e82c (patch)
tree45e403e10bd6f24eb05dcb8365adb331e4814af5 /src/libstd/sys/windows
parentb081a49a0701e6d95bc868a526138bc7a3cf6d46 (diff)
downloadrust-54a16aea6a3b6a765ebf1821d339456c87f6e82c.tar.gz
rust-54a16aea6a3b6a765ebf1821d339456c87f6e82c.zip
Fix tidy errors
Diffstat (limited to 'src/libstd/sys/windows')
-rw-r--r--src/libstd/sys/windows/c.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/c.rs b/src/libstd/sys/windows/c.rs
index dc0eb244155..f4bd9c22bb9 100644
--- a/src/libstd/sys/windows/c.rs
+++ b/src/libstd/sys/windows/c.rs
@@ -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")]