Work around doxygen complaining about lack of override function

This commit is contained in:
Simon Hausmann 2021-06-26 09:31:54 +02:00
parent 325751a695
commit 8a8ff6d2e9

View file

@ -455,6 +455,7 @@ struct IntModel : Model<int>
IntModel(int d) : data(d) { }
/// \private
int data;
/// \copydoc Model::row_count
int row_count() const override { return data; }
int row_data(int value) const override { return value; }
};