diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-12-14 15:08:52 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-12-14 15:08:52 +0100 |
commit | 023af95abeb4a9bd61665f37fc8dec173e0f2f4a (patch) | |
tree | 11b1facff61ff5083824158bf48cfc635a86e416 /dom/html/HTMLSelectElement.h | |
parent | fea96b4527a2db6cd97c9053d647478b347d3853 (diff) | |
download | uxp-023af95abeb4a9bd61665f37fc8dec173e0f2f4a.tar.gz |
Make HTMLOptionsCollection::mSelect into a strong reference.
The cycle collector makes weak references like this obsolete.
Diffstat (limited to 'dom/html/HTMLSelectElement.h')
-rw-r--r-- | dom/html/HTMLSelectElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/html/HTMLSelectElement.h b/dom/html/HTMLSelectElement.h index 8a25385de6..dc1075cd7d 100644 --- a/dom/html/HTMLSelectElement.h +++ b/dom/html/HTMLSelectElement.h @@ -436,7 +436,7 @@ public: void SetOpenInParentProcess(bool aVal); protected: - virtual ~HTMLSelectElement(); + virtual ~HTMLSelectElement() = default; friend class SafeOptionListMutation; |