diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-12-01 02:50:06 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-12-06 13:15:06 -1000 |
commit | 620a67ff14b21c9da2d23bd96ecb9bb191738457 (patch) | |
tree | f97ae58850c4211664f99b1cb3c835955fe1452a /components/script/dom/node.rs | |
parent | 73b6e705b4e18f53f36c8af98543dc2819764ef5 (diff) | |
download | servo-620a67ff14b21c9da2d23bd96ecb9bb191738457.tar.gz servo-620a67ff14b21c9da2d23bd96ecb9bb191738457.zip |
Mark JSTraceable and its method as unsafe
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r-- | components/script/dom/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index f08b1480eef..5f979bd8c9f 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -2566,7 +2566,7 @@ struct UniqueId { cell: UnsafeCell<Option<Box<Uuid>>>, } -no_jsmanaged_fields!(UniqueId); +unsafe_no_jsmanaged_fields!(UniqueId); impl HeapSizeOf for UniqueId { #[allow(unsafe_code)] |