Skip to content

Commit

Permalink
Deprecating functions in non-speclialized Passthrough filter
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi committed Apr 8, 2020
1 parent 82a38ae commit 2d979af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions filters/include/pcl/filters/passthrough.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ namespace pcl
* \param[in] limit_negative return data inside the interval (false) or outside (true)
*/
inline void
PCL_DEPRECATED(1, 13, "use inherited FilterIndices::setNegative() instead")
setFilterLimitsNegative (const bool limit_negative)
{
negative_ = limit_negative;
Expand All @@ -161,6 +162,7 @@ namespace pcl
* \param[out] limit_negative true if data \b outside the interval [min; max] is to be returned, false otherwise
*/
inline void
PCL_DEPRECATED(1, 13, "use inherited FilterIndices::getNegative() instead")
getFilterLimitsNegative (bool &limit_negative) const
{
limit_negative = negative_;
Expand Down

0 comments on commit 2d979af

Please sign in to comment.