Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions grid_map_core/include/grid_map_core/BufferRegion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class BufferRegion
BufferRegion(
const Index & startIndex, const Size & size,
const BufferRegion::Quadrant & quadrant);
BufferRegion(const BufferRegion & other) = default;
BufferRegion & operator=(const BufferRegion & other) = default;
virtual ~BufferRegion() = default;

const Index & getStartIndex() const;
Expand Down
3 changes: 3 additions & 0 deletions grid_map_core/include/grid_map_core/Polygon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ class Polygon
*/
explicit Polygon(std::vector<Position> vertices);

Polygon(const Polygon & other) = default;
Polygon & operator=(const Polygon & other) = default;

/*!
* Destructor.
*/
Expand Down