Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into autoware_msg
Browse files Browse the repository at this point in the history
  • Loading branch information
cyn-liu committed May 21, 2024
2 parents 8a1d84b + b92f64f commit 80e4764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmp/lanelet2_extension/lib/visualization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace
template <typename T>
bool exists(const std::unordered_set<T> & set, const T & element)
{
return std::find(set.begin(), set.end(), element) != set.end();
return set.find(element) != set.end();
}

void adjacentPoints(
Expand Down

0 comments on commit 80e4764

Please sign in to comment.