Skip to content

Commit

Permalink
Remove unused code.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Feb 19, 2020
1 parent 748deaa commit cdfd908
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions pdal/PointRef.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,21 +224,6 @@ class PDAL_DLL PointRef
PointId pointId() const
{ return m_idx; }

PointRef& operator+=(point_count_t n)
{ m_idx += n; return *this; }
PointRef& operator-=(point_count_t n)
{ m_idx -= n; return *this; }
bool operator==(const PointRef& r) const
{ return (m_container == r.m_container) && (m_idx == r.m_idx); }
bool operator<(const PointRef& r) const
{ return (m_container == r.m_container) && (m_idx < r.m_idx); }
bool operator<=(const PointRef& r) const
{ return (m_container == r.m_container) && (m_idx <= r.m_idx); }
bool operator>(const PointRef& r) const
{ return (m_container == r.m_container) && (m_idx > r.m_idx); }
bool operator>=(const PointRef& r) const
{ return (m_container == r.m_container) && (m_idx >= r.m_idx); }

inline void getField(char *val, Dimension::Id d,
Dimension::Type type) const;
inline void setField(Dimension::Id dim,
Expand Down

0 comments on commit cdfd908

Please sign in to comment.