| Index: Source/core/layout/TableLayoutAlgorithmAuto.h
|
| diff --git a/Source/core/layout/TableLayoutAlgorithmAuto.h b/Source/core/layout/TableLayoutAlgorithmAuto.h
|
| index 50bf878e5d4e2c4d67cc16a14f182065730270a4..6692ffe73e3389fa9c74427cde9484d36ca8a849 100644
|
| --- a/Source/core/layout/TableLayoutAlgorithmAuto.h
|
| +++ b/Source/core/layout/TableLayoutAlgorithmAuto.h
|
| @@ -33,8 +33,7 @@ class LayoutTableCell;
|
|
|
| enum CellsToProcess {
|
| AllCells,
|
| - NonEmptyCells,
|
| - EmptyCells
|
| + NonEmptyCells
|
| };
|
|
|
| enum DistributionMode {
|
| @@ -76,7 +75,6 @@ private:
|
| , effectiveMaxLogicalWidth(0)
|
| , computedLogicalWidth(0)
|
| , emptyCellsOnly(true)
|
| - , columnHasNoCells(true)
|
| {
|
| }
|
|
|
| @@ -88,8 +86,6 @@ private:
|
| int effectiveMaxLogicalWidth;
|
| int computedLogicalWidth;
|
| bool emptyCellsOnly;
|
| - bool columnHasNoCells;
|
| - int clampedEffectiveMaxLogicalWidth() { return std::max<int>(1, effectiveMaxLogicalWidth); }
|
| };
|
|
|
| Vector<Layout, 4> m_layoutStruct;
|
|
|