Some things did not need to be mutable after all

This commit is contained in:
Jean-Marc Lasgouttes 2016-07-18 14:34:08 +02:00
parent 097ab41c49
commit 2306fca659
2 changed files with 2 additions and 2 deletions

View File

@ -756,7 +756,7 @@ public:
/// ///
column_vector column_info; column_vector column_info;
/// ///
mutable cell_vvector cell_info; cell_vvector cell_info;
/// ///
Length tabular_width; Length tabular_width;
/// ///

View File

@ -232,7 +232,7 @@ private:
/// ///
ColorCode frame_color_; ColorCode frame_color_;
/// ///
mutable Text text_; Text text_;
}; };