diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-12-02 17:05:19 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2021-12-02 17:05:19 -0500 |
commit | 898f66bcd009187a4173cbcf8f566f2594cb7c57 (patch) | |
tree | eb95cf2b3924b5d14bb11aae1dc7532f740ea7f4 /components/script/dom/identityhub.rs | |
parent | e46d952efdf8c3c0a10cec35c22636d750347c56 (diff) | |
download | servo-898f66bcd009187a4173cbcf8f566f2594cb7c57.tar.gz servo-898f66bcd009187a4173cbcf8f566f2594cb7c57.zip |
Update rustc.
Diffstat (limited to 'components/script/dom/identityhub.rs')
-rw-r--r-- | components/script/dom/identityhub.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/identityhub.rs b/components/script/dom/identityhub.rs index 515e9f7e1b1..c4d997bcd6d 100644 --- a/components/script/dom/identityhub.rs +++ b/components/script/dom/identityhub.rs @@ -54,7 +54,7 @@ impl IdentityHub { #[derive(Debug)] pub struct Identities { - surface: IdentityManager, + _surface: IdentityManager, #[cfg(any(target_os = "linux", target_os = "windows"))] vk_hub: IdentityHub, #[cfg(target_os = "windows")] @@ -69,7 +69,7 @@ pub struct Identities { impl Identities { pub fn new() -> Self { Identities { - surface: IdentityManager::default(), + _surface: IdentityManager::default(), #[cfg(any(target_os = "linux", target_os = "windows"))] vk_hub: IdentityHub::new(), #[cfg(target_os = "windows")] |