Browse Source

LibWeb: Visit proper base class in SyntheticHostDefined

This was a goof of mine from when I added a common HostDefined base
class.
Shannon Booth 8 months ago
parent
commit
27f1e3676f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Libraries/LibWeb/Bindings/SyntheticHostDefined.cpp

+ 1 - 1
Libraries/LibWeb/Bindings/SyntheticHostDefined.cpp

@@ -13,7 +13,7 @@ namespace Web::Bindings {
 
 void SyntheticHostDefined::visit_edges(JS::Cell::Visitor& visitor)
 {
-    JS::Realm::HostDefined::visit_edges(visitor);
+    HostDefined::visit_edges(visitor);
     synthetic_realm_settings.visit_edges(visitor);
 }