Bug 1412546 - avoid -Wunused-private-field warnings in WasmTypes.h; r=arai

This commit is contained in:
Nathan Froyd 2017-10-28 15:40:15 -04:00
Родитель 8968724f1a
Коммит b8d06c7563
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -1846,10 +1846,13 @@ class DebugFrame
void* flagsWord_;
};
// Avoid -Wunused-private-field warnings.
protected:
#if JS_BITS_PER_WORD == 32
uint32_t padding_; // See alignmentStaticAsserts().
#endif
private:
// The Frame goes at the end since the stack grows down.
Frame frame_;