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

toString->std::to_string

parent 6d97a8a8
No related branches found
No related tags found
1 merge request!49Draft: Resolve "Adapt to new sensor constructors in core"
......@@ -40,7 +40,7 @@ class SensorImu : public SensorBase
public:
SensorImu(const YAML::Node &_params)
: SensorBase("SensorImu" + toString(DIM) + "d",
: SensorBase("SensorImu" + std::to_string(DIM) + "d",
DIM,
// FIXME: JV: Should we remove PO since IMU are now implemented to not have extrinsics?
(DIM == 2 ? TypeComposite{{'P', "StatePoint2d"}, {'O', "StateAngle"}, {'G', "StateParams1"}}
......
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