Bug 978188: Guard 'restartVerifier' member-var decl with the same #ifdef as its usage, to fix clang 'unused-private-field' warning. r=terrence

This commit is contained in:
Daniel Holbert 2014-02-28 12:51:08 -08:00
Родитель 29327d860a
Коммит dfd2033053
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -316,7 +316,7 @@ WasIncrementalGC(JSRuntime *rt);
class JS_FRIEND_API(AutoDisableGenerationalGC)
{
JSRuntime *runtime;
#ifdef JS_GC_ZEAL
#if defined(JSGC_GENERATIONAL) && defined(JS_GC_ZEAL)
bool restartVerifier;
#endif

Просмотреть файл

@ -932,7 +932,7 @@ JS::DisableIncrementalGC(JSRuntime *rt)
JS::AutoDisableGenerationalGC::AutoDisableGenerationalGC(JSRuntime *rt)
: runtime(rt)
#ifdef JS_GC_ZEAL
#if defined(JSGC_GENERATIONAL) && defined(JS_GC_ZEAL)
, restartVerifier(rt->gcVerifyPostData)
#endif
{