Skip to content

Commit

Permalink
lint - unusged arg
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgerlek committed Mar 1, 2012
1 parent a79ddfa commit 2e6d724
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion include/pdal/filters/Crop.hpp
Expand Up @@ -67,7 +67,7 @@ class PDAL_DLL Crop : public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

// returns number of points accepted into the data buffer (which may be less than data.getNumPoints(),
// if we're calling this routine multiple times with the same buffer
Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/Decimation.hpp
Expand Up @@ -65,7 +65,7 @@ class PDAL_DLL Decimation : public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

boost::uint32_t getStep() const;

Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/InPlaceReprojection.hpp
Expand Up @@ -76,7 +76,7 @@ class PDAL_DLL InPlaceReprojection : public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

void processBuffer(PointBuffer& data) const;

Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/Mosaic.hpp
Expand Up @@ -67,7 +67,7 @@ class PDAL_DLL Mosaic : public MultiFilter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

private:
Mosaic& operator=(const Mosaic&); // not implemented
Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/Predicate.hpp
Expand Up @@ -70,7 +70,7 @@ class PDAL_DLL Predicate : public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

boost::uint32_t processBuffer(PointBuffer& dstData, const PointBuffer& srcData, pdal::plang::Parser& parser) const;

Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/Programmable.hpp
Expand Up @@ -71,7 +71,7 @@ class PDAL_DLL Programmable : public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

void processBuffer(PointBuffer& data, pdal::plang::Parser& parser) const;

Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/Scaling.hpp
Expand Up @@ -83,7 +83,7 @@ class PDAL_DLL Scaling: public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

std::vector<scaling::Scaler> const& getScalers() const { return m_scalers; }

Expand Down
2 changes: 1 addition & 1 deletion include/pdal/filters/Selector.hpp
Expand Up @@ -69,7 +69,7 @@ class PDAL_DLL Selector: public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return NULL; }
pdal::StageRandomIterator* createRandomIterator(PointBuffer&) const { return NULL; }

void processBuffer(const PointBuffer& srcData, PointBuffer& dstData) const;

Expand Down

0 comments on commit 2e6d724

Please sign in to comment.