Skip to content

Commit

Permalink
Fix FTBFS with gcc-14 (Bug in Debian sid)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Aug 10, 2024
1 parent 97b8737 commit 2a731ce
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions doc/source/doxygen-docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- https://github.com/MRPT/python_mrpt_ros
- BUG FIXES:
- CWaypointsNavigator::waypoints_navigationStep() stops aligning with target after the waypoint is considered as reached.
- Fix FTBFS in Debian sid (g++-14) due to missing ``#include <iomanip>``.

# Version 2.13.5: Released Aug 5th, 2024
- Changes in libraries:
Expand Down
2 changes: 1 addition & 1 deletion libs/obs/src/CObservationGPS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <mrpt/serialization/CArchive.h>
#include <mrpt/serialization/optional_serialization.h>

#include <iomanip>
#include <iomanip> // for setprecision(), etc.

using namespace std;
using namespace mrpt;
Expand Down
2 changes: 1 addition & 1 deletion libs/poses/src/CPose3D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <Eigen/Dense>
#include <algorithm> // for move
#include <cmath> // for fabs
#include <iomanip> // for operator<<
#include <iomanip> // for setprecision(), etc.
#include <limits> // for numeric_...
#include <ostream> // for operator<<
#include <string> // for allocator
Expand Down
2 changes: 1 addition & 1 deletion libs/poses/src/CPose3DQuat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <mrpt/serialization/CSerializable.h>

#include <Eigen/Dense>
#include <iomanip>
#include <iomanip> // for setprecision(), etc.
#include <limits>

using namespace std;
Expand Down
1 change: 1 addition & 0 deletions libs/poses/src/Lie/LieTraits_unittest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <mrpt/poses/Lie/SE.h>

#include <Eigen/Dense>
#include <iomanip> // for setprecision(), etc.

using namespace mrpt;
using namespace mrpt::poses;
Expand Down

0 comments on commit 2a731ce

Please sign in to comment.