Skip to content
Open
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
4 changes: 2 additions & 2 deletions octomap/include/octomap/ScanGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace octomap {

~ScanNode();

bool operator == (const ScanNode& other) {
bool operator == (const ScanNode& other) const {
return (id == other.id);
}

Expand All @@ -87,7 +87,7 @@ namespace octomap {
: first(_first), second(_second), constraint(_constraint), weight(1.0) { }
ScanEdge() {}

bool operator == (const ScanEdge& other) {
bool operator == (const ScanEdge& other) const {
return ( (*first == *(other.first) ) && ( *second == *(other.second) ) );
}

Expand Down