Skip to content

Commit

Permalink
Fix copy constructor for pal::PointSet
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 20, 2015
1 parent 05ebeee commit ecfdde5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/pal/pointset.cpp
Expand Up @@ -115,10 +115,10 @@ namespace pal
: mGeos( 0 )
, mOwnsGeom( false )
, parent( 0 )
, xmin( DBL_MAX )
, xmax( -DBL_MAX )
, ymin( DBL_MAX )
, ymax( -DBL_MAX )
, xmin( ps.xmin )
, xmax( ps.xmax )
, ymin( ps.ymin )
, ymax( ps.ymax )
, mPreparedGeom( 0 )
{
int i;
Expand Down

0 comments on commit ecfdde5

Please sign in to comment.