Bug 1276351: apply code formatting via Lando

# ignore-this-changeset
This commit is contained in:
Otto Länd 2023-03-27 07:23:36 +00:00
parent 02db5a8d8f
commit 314123012b

View File

@ -216,8 +216,8 @@ Maybe<AspectRatio> ClippedImage::GetIntrinsicRatio() {
NS_IMETHODIMP_(already_AddRefed<SourceSurface>)
ClippedImage::GetFrame(uint32_t aWhichFrame, uint32_t aFlags) {
RefPtr<SourceSurface> surface;
std::tie(std::ignore, surface) = GetFrameInternal(mClip.Size(), SVGImageContext(),
Nothing(), aWhichFrame, aFlags, 1.0);
std::tie(std::ignore, surface) = GetFrameInternal(
mClip.Size(), SVGImageContext(), Nothing(), aWhichFrame, aFlags, 1.0);
return surface.forget();
}