From 10edae86761dcea18d0eaa91c5f13aca80bfd8bc Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Fri, 12 Sep 2014 18:19:49 +0200 Subject: [PATCH] Bug 1066193: Explicit this parameter in IonExitFrameLayout::is so as to prevent compilation issues with gcc; r=sfink --- js/src/jit/IonFrames.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jit/IonFrames.h b/js/src/jit/IonFrames.h index 8cc035b6a49..7b330758158 100644 --- a/js/src/jit/IonFrames.h +++ b/js/src/jit/IonFrames.h @@ -520,7 +520,7 @@ class IonExitFrameLayout : public IonCommonFrameLayout return footer()->jitCode() == T::Token(); } template inline T *as() { - MOZ_ASSERT(is()); + MOZ_ASSERT(this->is()); return reinterpret_cast(footer()); } };