diff --git a/octomap/include/octomap/MapCollection.hxx b/octomap/include/octomap/MapCollection.hxx index ff35d49c..79507415 100644 --- a/octomap/include/octomap/MapCollection.hxx +++ b/octomap/include/octomap/MapCollection.hxx @@ -127,13 +127,13 @@ namespace octomap { } template - MAPNODE* MapCollection::addNode(const Pointcloud& cloud, point3d sensor_origin) { + MAPNODE* MapCollection::addNode(const Pointcloud&, point3d) { // TODO... return 0; } template - bool MapCollection::removeNode(const MAPNODE* n) { + bool MapCollection::removeNode(const MAPNODE*) { // TODO... return false; } @@ -252,8 +252,8 @@ namespace octomap { // TODO template - void MapCollection::insertScan(const Pointcloud& scan, const octomap::point3d& sensor_origin, - double maxrange, bool pruning, bool lazy_eval) { + void MapCollection::insertScan(const Pointcloud&, const octomap::point3d&, + double, bool, bool) { fprintf(stderr, "ERROR: MapCollection::insertScan is not implemented yet.\n"); } @@ -267,7 +267,7 @@ namespace octomap { // TODO template - std::vector MapCollection::segment(const Pointcloud& scan) const { + std::vector MapCollection::segment(const Pointcloud&) const { std::vector result; fprintf(stderr, "ERROR: MapCollection::segment is not implemented yet.\n"); return result; @@ -275,7 +275,7 @@ namespace octomap { // TODO template - MAPNODE* MapCollection::associate(const Pointcloud& scan) { + MAPNODE* MapCollection::associate(const Pointcloud&) { fprintf(stderr, "ERROR: MapCollection::associate is not implemented yet.\n"); return 0; } diff --git a/octomap/include/octomap/MapNode.hxx b/octomap/include/octomap/MapNode.hxx index 8e08b6c6..452aa651 100644 --- a/octomap/include/octomap/MapNode.hxx +++ b/octomap/include/octomap/MapNode.hxx @@ -44,7 +44,7 @@ namespace octomap { } template - MapNode::MapNode(const Pointcloud& in_cloud, pose6d in_origin): node_map(0) { + MapNode::MapNode(const Pointcloud&, pose6d): node_map(0) { } template @@ -60,7 +60,7 @@ namespace octomap { } template - void MapNode::updateMap(const Pointcloud& cloud, point3d sensor_origin) { + void MapNode::updateMap(const Pointcloud&, point3d) { } template diff --git a/octomap/include/octomap/OcTreeIterator.hxx b/octomap/include/octomap/OcTreeIterator.hxx index 64cbdd7a..95b2cd9c 100644 --- a/octomap/include/octomap/OcTreeIterator.hxx +++ b/octomap/include/octomap/OcTreeIterator.hxx @@ -396,13 +396,6 @@ } } - leaf_bbx_iterator(const leaf_bbx_iterator& other) : iterator_base(other) { - minKey = other.minKey; - maxKey = other.maxKey; - } - - - /// postfix increment operator of iterator (it++) leaf_bbx_iterator operator++(int){ leaf_bbx_iterator result = *this;