Bug 1611950 - Make constructor of CellMap::Cell constexpr r=dholbert

Differential Revision: https://phabricator.services.mozilla.com/D61179

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Emily McDonough 2020-01-29 06:34:48 +00:00
parent fa1de91185
commit 20c74bb15f

View File

@ -3062,7 +3062,7 @@ struct MOZ_STACK_CLASS nsGridContainerFrame::Grid {
*/
struct CellMap {
struct Cell {
Cell() : mIsOccupied(false) {}
constexpr Cell() : mIsOccupied(false) {}
bool mIsOccupied : 1;
};