Skip to content

Commit

Permalink
Linux: Fix reference compile errors (#2697)
Browse files Browse the repository at this point in the history
  • Loading branch information
emminizer authored Feb 3, 2025
1 parent 878365d commit 79fcf90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/osgEarth/JoinPointsLinesFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ FilterContext JoinPointsLinesFilter::push(FeatureList& input, FilterContext& con
if (!output->empty())
{
entry.previous = output->back();
auto& prev_point = pointMap.find(entry.previous);
auto prev_point = pointMap.find(entry.previous);
prev_point->second.next = point;
}

Expand Down
2 changes: 1 addition & 1 deletion src/osgEarth/PowerlineLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ namespace
if (!output->empty())
{
entry.previous = output->back();
auto& prev_point = pointMap.find(entry.previous);
auto prev_point = pointMap.find(entry.previous);
prev_point->second.next = point;
}

Expand Down

0 comments on commit 79fcf90

Please sign in to comment.