mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-01 16:02:53 +00:00
WebContent: Fix some GCVerifier warnings
This commit is contained in:
parent
8450041b52
commit
a221a4660e
Notes:
sideshowbarker
2024-07-17 21:11:12 +09:00
Author: https://github.com/mattco98
Commit: a221a4660e
Pull-request: https://github.com/SerenityOS/serenity/pull/23861
Reviewed-by: https://github.com/awesomekling
6 changed files with 79 additions and 79 deletions
|
@ -678,12 +678,12 @@ void PageClient::initialize_js_console(Web::DOM::Document& document)
|
|||
m_top_level_document_console_client = console_client->make_weak_ptr();
|
||||
}
|
||||
|
||||
m_console_clients.set(&document, move(console_client));
|
||||
m_console_clients.set(document, move(console_client));
|
||||
}
|
||||
|
||||
void PageClient::destroy_js_console(Web::DOM::Document& document)
|
||||
{
|
||||
m_console_clients.remove(&document);
|
||||
m_console_clients.remove(document);
|
||||
}
|
||||
|
||||
void PageClient::js_console_input(ByteString const& js_source)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue