diff options
author | Anthony Ramine <nox@nox.paris> | 2020-03-27 17:37:56 +0100 |
---|---|---|
committer | Anthony Ramine <nox@nox.paris> | 2020-03-28 15:37:57 +0100 |
commit | dba6a635e5df980b2837495aae59711739c23716 (patch) | |
tree | 9e91fe80e491a0a0cc29800b4dd71d23cc1abcb9 /components/script/dom/attr.rs | |
parent | 60ca98b753570ce4ce56bc92ddbdd3c0c0e5800d (diff) | |
download | servo-dba6a635e5df980b2837495aae59711739c23716.tar.gz servo-dba6a635e5df980b2837495aae59711739c23716.zip |
Give a lifetime parameter to LayoutDom
Diffstat (limited to 'components/script/dom/attr.rs')
-rw-r--r-- | components/script/dom/attr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/attr.rs b/components/script/dom/attr.rs index 259a0d560c2..7dcc76e6caf 100644 --- a/components/script/dom/attr.rs +++ b/components/script/dom/attr.rs @@ -241,7 +241,7 @@ pub trait AttrHelpersForLayout { } #[allow(unsafe_code)] -impl AttrHelpersForLayout for LayoutDom<Attr> { +impl AttrHelpersForLayout for LayoutDom<'_, Attr> { #[inline] unsafe fn value_forever(&self) -> &'static AttrValue { // This transmute is used to cheat the lifetime restriction. |