mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1066193: Explicit this parameter in IonExitFrameLayout::is<T> so as to prevent compilation issues with gcc; r=sfink
This commit is contained in:
parent
666ed7a7a4
commit
10edae8676
@ -520,7 +520,7 @@ class IonExitFrameLayout : public IonCommonFrameLayout
|
||||
return footer()->jitCode() == T::Token();
|
||||
}
|
||||
template <typename T> inline T *as() {
|
||||
MOZ_ASSERT(is<T>());
|
||||
MOZ_ASSERT(this->is<T>());
|
||||
return reinterpret_cast<T *>(footer());
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user