Remove unused struct members

Interestingly, cppcheck detected that they were not initialized (see
8a047a41), but not that they were unused.
This commit is contained in:
Jean-Marc Lasgouttes 2016-08-30 17:06:13 +02:00
parent 03684ae05e
commit 78ae499355
2 changed files with 1 additions and 8 deletions

View File

@ -82,7 +82,7 @@ static void resetGrid(InsetMathGrid & grid)
InsetMathGrid::CellInfo::CellInfo()
: multi_(CELL_NORMAL), glue_(0), begin_(0), end_(0)
: multi_(CELL_NORMAL)
{}

View File

@ -44,13 +44,6 @@ public:
Multicolumn multi_;
/// special multi colums alignment
docstring align_;
/// these should be a per-cell property, but ok to have it here
/// for single-column grids like paragraphs
mutable int glue_;
///
mutable pos_type begin_;
///
mutable pos_type end_;
};
/// additional per-row information