Skip to content

Commit

Permalink
GmMultiPolyIntersector for python - fix CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mkennard-aquaveo committed Jan 3, 2024
1 parent 87c5b16 commit 33a70f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xmsgrid/geometry/GmMultiPolyIntersector.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

// 5. Shared code headers
#include <xmscore/misc/base_macros.h> // for XM_DISALLOW_COPY_AND_ASSIGN
#include <xmscore/misc/boost_defines.h>
#include <xmscore/misc/boost_defines.h> // for BSHP
#include <xmscore/points/ptsfwd.h> // for Pt3d

//----- Namespace --------------------------------------------------------------
Expand All @@ -33,11 +33,12 @@ enum GmMultiPolyIntersectorQueryEnum { GMMPIQ_COVEREDBY, GMMPIQ_INTERSECTS };
class GmMultiPolyIntersector
{
public:
static boost::shared_ptr<GmMultiPolyIntersector> New(
static BSHP<GmMultiPolyIntersector> New(
const std::vector<Pt3d>& a_points,
const std::vector<std::vector<int> >& a_polys,
boost::shared_ptr<GmMultiPolyIntersectionSorter> a_sorter,
BSHP<GmMultiPolyIntersectionSorter> a_sorter,
int a_startingId = 1);
virtual ~GmMultiPolyIntersector();
/// \cond

virtual GmMultiPolyIntersectorQueryEnum GetQuery() const = 0;
Expand Down Expand Up @@ -71,7 +72,6 @@ class GmMultiPolyIntersector
/// \endcond
protected:
GmMultiPolyIntersector();
virtual ~GmMultiPolyIntersector();

private:
XM_DISALLOW_COPY_AND_ASSIGN(GmMultiPolyIntersector)
Expand Down

0 comments on commit 33a70f0

Please sign in to comment.