Skip to content
Snippets Groups Projects
Commit 4570ef3f authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

missing override

parent d21f65dd
No related branches found
No related tags found
No related merge requests found
Pipeline #6299 passed
......@@ -19,7 +19,7 @@ struct ParamsTreeManagerSlidingWindow : public ParamsTreeManagerBase
fix_first_frame = _server.getParam<bool> (prefix + "/fix_first_frame");
viral_remove_empty_parent = _server.getParam<bool> (prefix + "/viral_remove_empty_parent");
}
std::string print() const
std::string print() const override
{
return ParamsTreeManagerBase::print() + "\n"
+ "n_frames: " + std::to_string(n_frames) + "\n"
......
......@@ -19,7 +19,7 @@ struct ParamsTreeManagerSlidingWindowDualRate : public ParamsTreeManagerSlidingW
assert(n_frames_recent <= n_frames);
rate_old_frames = _server.getParam<unsigned int>(prefix + "/rate_old_frames");
}
std::string print() const
std::string print() const override
{
return ParamsTreeManagerBase::print() + "\n"
+ "n_frames_recent: " + std::to_string(n_frames_recent) + "\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment