mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 23:19:44 +00:00
Everywhere: Change west consts caught by clang-format-21 to east consts
This commit is contained in:
parent
829437c11d
commit
b17783bb10
Notes:
github-actions[bot]
2025-08-29 17:20:11 +00:00
Author: https://github.com/Lubrsi
Commit: b17783bb10
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6023
Reviewed-by: https://github.com/tcl3 ✅
49 changed files with 80 additions and 80 deletions
|
@ -92,7 +92,7 @@ void XMLDocumentBuilder::set_doctype(XML::Doctype doctype)
|
|||
m_document->insert_before(document_type, m_document->first_child(), false);
|
||||
}
|
||||
|
||||
void XMLDocumentBuilder::element_start(const XML::Name& name, OrderedHashMap<XML::Name, ByteString> const& attributes)
|
||||
void XMLDocumentBuilder::element_start(XML::Name const& name, OrderedHashMap<XML::Name, ByteString> const& attributes)
|
||||
{
|
||||
if (m_has_error)
|
||||
return;
|
||||
|
@ -184,7 +184,7 @@ void XMLDocumentBuilder::element_start(const XML::Name& name, OrderedHashMap<XML
|
|||
m_current_node = node.ptr();
|
||||
}
|
||||
|
||||
void XMLDocumentBuilder::element_end(const XML::Name& name)
|
||||
void XMLDocumentBuilder::element_end(XML::Name const& name)
|
||||
{
|
||||
if (m_has_error)
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue