Explicit InsetTableCell copy constructor

Use explicit default syntax (C++11).

Adapted from:
commit bff97ba76d
commit 3d46cc302b
This commit is contained in:
Jean-Marc Lasgouttes 2021-10-15 16:20:40 +02:00
parent 09b340a45e
commit dfa97f80d9

View File

@ -53,6 +53,9 @@ class InsetTableCell : public InsetText
public: public:
/// ///
InsetTableCell(Buffer * buf); InsetTableCell(Buffer * buf);
/// We need this since generation of the default is deprecated
/// (since we declare the assignment constuctor below).
InsetTableCell(InsetTableCell const & in) = default;
/// ///
InsetCode lyxCode() const { return CELL_CODE; } InsetCode lyxCode() const { return CELL_CODE; }
/// ///