diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2020-04-08 14:57:42 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2020-04-09 21:33:44 +0200 |
commit | 1c0549ce7fd748511d6200e622eddf800b3e9ca4 (patch) | |
tree | 38d850f2f0e185c7e652122fa7b080374999c205 /components/media | |
parent | 4227425c1e6374857b3d881a1d3963be27141576 (diff) | |
download | servo-1c0549ce7fd748511d6200e622eddf800b3e9ca4.tar.gz servo-1c0549ce7fd748511d6200e622eddf800b3e9ca4.zip |
Upgrade to rustc 1.44.0-nightly (42abbd887 2020-04-07)
Diffstat (limited to 'components/media')
-rw-r--r-- | components/media/media_channel/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/media/media_channel/mod.rs b/components/media/media_channel/mod.rs index 5616a8479fd..241fec2db77 100644 --- a/components/media/media_channel/mod.rs +++ b/components/media/media_channel/mod.rs @@ -13,7 +13,7 @@ use servo_config::opts; use std::fmt; lazy_static! { - static ref IS_MULTIPROCESS: bool = { opts::multiprocess() }; + static ref IS_MULTIPROCESS: bool = opts::multiprocess(); } #[derive(Deserialize, Serialize)] |