Skip to content

Commit

Permalink
SServiceIdKey compare operator improved
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Apr 24, 2024
1 parent 83c2cbd commit f6e2bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecal/core/src/ecal_descgate.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace eCAL

bool operator<(const SServiceIdKey& other) const
{
return std::tie(service_name, service_id) < std::tie(other.service_name, other.service_id);
return std::tie(service_name, method_name, service_id) < std::tie(other.service_name, other.method_name, other.service_id);
}
};

Expand Down

0 comments on commit f6e2bea

Please sign in to comment.