Skip to content

Commit

Permalink
Merge pull request #589 from tobias93/develop
Browse files Browse the repository at this point in the history
Fix issue with duplicate points
  • Loading branch information
m-schuetz authored Oct 3, 2022
2 parents 758bbac + 8b0d63a commit 1bcbd9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Converter/src/indexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ void buildHierarchy(Indexer* indexer, Node* node, shared_ptr<Buffer> points, int
vector<int64_t> distinct;
unordered_map<string, int> handled;

auto contains = [](auto map, auto key) {
auto contains = [](auto const & map, auto const & key) {
return map.find(key) != map.end();
};

Expand Down

0 comments on commit 1bcbd9e

Please sign in to comment.