Skip to content
Snippets Groups Projects
Commit 1d8a6436 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Make print() const

parent 0c5daca5
No related branches found
No related tags found
2 merge requests!39release after RAL,!38After 2nd RAL submission
......@@ -20,7 +20,7 @@ struct ProcessorParamsIMU : public ProcessorParamsMotion
{
//
}
std::string print()
std::string print() const
{
return "\n" + ProcessorParamsMotion::print();
}
......
......@@ -40,7 +40,7 @@ struct IntrinsicsIMU : public IntrinsicsBase
ab_rate_stdev = _server.getParam<Scalar>(_unique_name + "/ab_rate_stdev");
wb_rate_stdev = _server.getParam<Scalar>(_unique_name + "/wb_rate_stdev");
}
std::string print()
std::string print() const
{
return "\n" + IntrinsicsBase::print() + "\n"
+ "w_noise: " + std::to_string(w_noise) + "\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