Skip to content

Commit

Permalink
Added missing include to Landmark.hpp
Browse files Browse the repository at this point in the history
The file/class uses `std::back_inserter`, which is in `<iterator>`, and is not included transitively by the existing include statements.
  • Loading branch information
patrikhuber authored Oct 14, 2024
1 parent 3445b1c commit 74fdfb6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/eos/core/Landmark.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <algorithm>
#include <string>
#include <vector>
#include <iterator>

namespace eos {
namespace core {
Expand Down

0 comments on commit 74fdfb6

Please sign in to comment.