Skip to content

Commit

Permalink
Merge pull request #3010 from SunBlack/modernize-use-nullptr_geometry
Browse files Browse the repository at this point in the history
Use nullptr in module geometry
  • Loading branch information
SergioRAgostinho authored Apr 22, 2019
2 parents 204504a + b6163a2 commit a160917
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions geometry/include/pcl/geometry/mesh_circulators.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
VertexAroundVertexCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_outgoing_half_edge_ ()
{
}
Expand Down Expand Up @@ -185,7 +185,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
OutgoingHalfEdgeAroundVertexCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_outgoing_half_edge_ ()
{
}
Expand Down Expand Up @@ -293,7 +293,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
IncomingHalfEdgeAroundVertexCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_incoming_half_edge_ ()
{
}
Expand Down Expand Up @@ -402,7 +402,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
FaceAroundVertexCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_outgoing_half_edge_ ()
{
}
Expand Down Expand Up @@ -511,7 +511,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
VertexAroundFaceCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_inner_half_edge_ ()
{
}
Expand Down Expand Up @@ -619,7 +619,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
InnerHalfEdgeAroundFaceCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_inner_half_edge_ ()
{
}
Expand Down Expand Up @@ -727,7 +727,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
OuterHalfEdgeAroundFaceCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_inner_half_edge_ ()
{
}
Expand Down Expand Up @@ -835,7 +835,7 @@ namespace pcl

/** \brief Constructor resulting in an invalid circulator. */
FaceAroundFaceCirculator ()
: mesh_ (NULL),
: mesh_ (nullptr),
idx_inner_half_edge_ ()
{
}
Expand Down

0 comments on commit a160917

Please sign in to comment.