Bug 1856795 - Remove redundant member init r=emilio

Done with:
./mach static-analysis check --checks="-*, readability-redundant-member-init" --fix .

https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-member-init.html

Differential Revision: https://phabricator.services.mozilla.com/D190002
This commit is contained in:
Sylvestre Ledru
2023-10-15 15:29:02 +00:00
parent 23f066a634
commit b0fe72dee5
212 changed files with 241 additions and 524 deletions

View File

@@ -64,8 +64,7 @@ class SVGRootRenderingObserver final : public SVGRenderingObserver {
SVGRootRenderingObserver(SVGDocumentWrapper* aDocWrapper,
VectorImage* aVectorImage)
: SVGRenderingObserver(),
mDocWrapper(aDocWrapper),
: mDocWrapper(aDocWrapper),
mVectorImage(aVectorImage),
mHonoringInvalidations(true) {
MOZ_ASSERT(mDocWrapper, "Need a non-null SVG document wrapper");