Skip to content

Commit

Permalink
Fix return statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Tays committed Jul 25, 2018
1 parent 17d7ae2 commit 49732f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xmscore/python/misc/PyUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ boost::shared_ptr<VecPt3d2d> VecPt3d2dFromPyIter(const py::iterable& pts)
}
vec_pt3d2d->at(i) = vec_pt3d;
}
return vec_pt3d2d;
} // VecPt3d2dFromPyIter
//------------------------------------------------------------------------------
/// \brief Create py::iterable from VecPt3d2d
Expand All @@ -113,6 +114,7 @@ boost::shared_ptr<VecPt3d2d> VecPt3d2dFromPyIter(const py::iterable& pts)
//------------------------------------------------------------------------------
py::iterable PyIterFromVecPt3d2d(const VecPt3d2d& pts)
{
return py::make_tuple();
} // PyIterFromVecPt3d2d
//------------------------------------------------------------------------------
/// \brief Create VecInt2d from py::iterable
Expand Down

0 comments on commit 49732f4

Please sign in to comment.