Skip to content

Commit

Permalink
Add missing std qualifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
georgthegreat authored and github-actions[bot] committed Mar 2, 2025
1 parent 37516ed commit 87f93b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ogr/ogrsf_frmts/cad/libopencad/cadlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void CADLayer::addHandle( long handle, CADObject::ObjectType type, long cadinser
geometryTypes.push_back( type );
}

if( find( geometryTypes.begin(), geometryTypes.end(), type ) ==
if( std::find( geometryTypes.begin(), geometryTypes.end(), type ) ==
geometryTypes.end() )
{
geometryTypes.push_back( type );
Expand All @@ -268,7 +268,7 @@ void CADLayer::addHandle( long handle, CADObject::ObjectType type, long cadinser
geometryTypes.push_back( type );
}

if( find( geometryTypes.begin(), geometryTypes.end(), type ) ==
if( std::find( geometryTypes.begin(), geometryTypes.end(), type ) ==
geometryTypes.end() )
{
geometryTypes.push_back( type );
Expand Down

0 comments on commit 87f93b2

Please sign in to comment.