1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 13:55:06 +00:00

LibWeb: Use move semantics for QualifiedName more often

This commit is contained in:
Andreas Kling 2021-02-07 11:20:15 +01:00
parent 10420dee7e
commit 330c3fcb59
157 changed files with 308 additions and 308 deletions

View file

@ -431,8 +431,8 @@ bool PathDataParser::match_coordinate() const
return !done() && (isdigit(ch()) || ch() == '-' || ch() == '+' || ch() == '.');
}
SVGPathElement::SVGPathElement(DOM::Document& document, const QualifiedName& qualified_name)
: SVGGeometryElement(document, qualified_name)
SVGPathElement::SVGPathElement(DOM::Document& document, QualifiedName qualified_name)
: SVGGeometryElement(document, move(qualified_name))
{
}