From 48f0be70b2daf09af4e0260fd443696d81c0a6f0 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Fri, 16 May 2014 17:50:42 +0200 Subject: [PATCH] Bug 1010969 - Fix WError bustage on a CLOSED TREE --- gfx/layers/client/CompositableClient.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/layers/client/CompositableClient.h b/gfx/layers/client/CompositableClient.h index 785220bf5c7..a8c17600fb9 100644 --- a/gfx/layers/client/CompositableClient.h +++ b/gfx/layers/client/CompositableClient.h @@ -190,8 +190,8 @@ protected: struct AutoRemoveTexture MOZ_STACK_CLASS { AutoRemoveTexture(CompositableClient* aCompositable, TextureClient* aTexture = nullptr) - : mCompositable(aCompositable) - , mTexture(aTexture) + : mTexture(aTexture) + , mCompositable(aCompositable) {} ~AutoRemoveTexture()