diff options
| author | bors <bors@rust-lang.org> | 2020-11-20 13:42:44 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-11-20 13:42:44 +0000 |
| commit | c9c57fadc47c8ad986808fc0a47479f6d2043453 (patch) | |
| tree | 52afd8717cdc6a3f2ec2989dcf5eb2a4b921f037 | |
| parent | ae6aa22cf26fede2177abe4ff974030058885b7a (diff) | |
| parent | 24bbca4917b79e5e09b18d994601f3a96352bbad (diff) | |
| download | rust-c9c57fadc47c8ad986808fc0a47479f6d2043453.tar.gz rust-c9c57fadc47c8ad986808fc0a47479f6d2043453.zip | |
Auto merge of #79205 - rust-lang:jdm-patch-1, r=m-ou-se
Extend meta parameters to all generated code in compat_fn. Fixes https://github.com/rust-lang/rust/issues/79203. This addresses a regression from 7e2032390cf34f3ffa726b7bd890141e2684ba63 for UWP targets.
| -rw-r--r-- | library/std/src/sys/windows/compat.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/sys/windows/compat.rs b/library/std/src/sys/windows/compat.rs index 3f25f05e1b9..dd1523b422c 100644 --- a/library/std/src/sys/windows/compat.rs +++ b/library/std/src/sys/windows/compat.rs @@ -90,6 +90,7 @@ macro_rules! compat_fn { } } + $(#[$meta])* pub use $symbol::call as $symbol; )*) } |
