Skip to content

Commit

Permalink
lint and untabify
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgerlek committed Mar 1, 2012
1 parent 2e6d724 commit c45a13f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions include/pdal/filters/Stats.hpp
Expand Up @@ -96,18 +96,18 @@ class PDAL_DLL Summary
Summary( boost::uint32_t num_bins=20,
boost::uint32_t sample_size=1000,
boost::uint32_t cache_size=1000,
boost::uint32_t seed=0)
boost::uint32_t seed=0)
: m_histogram( boost::accumulators::tag::density::num_bins = num_bins,
boost::accumulators::tag::density::cache_size = cache_size)
, m_sample_size(sample_size)
, m_distribution(0, cache_size)
{
if (seed != 0)
{
m_rng.seed(seed);
m_distribution.reset();
}
if (seed != 0)
{
m_rng.seed(seed);
m_distribution.reset();
}
return;
}

Expand Down Expand Up @@ -161,7 +161,7 @@ class PDAL_DLL Stats : public Filter
}

pdal::StageSequentialIterator* createSequentialIterator(PointBuffer& buffer) const;
pdal::StageRandomIterator* createRandomIterator(PointBuffer& buffer) const { return 0; } // BUG: add this
pdal::StageRandomIterator* createRandomIterator(PointBuffer& ) const { return 0; } // BUG: add this

void processBuffer(PointBuffer& data) const;

Expand Down Expand Up @@ -208,8 +208,8 @@ class PDAL_DLL Stats : public pdal::FilterSequentialIterator
bool atEndImpl() const;

const pdal::filters::Stats& m_statsFilter;
std::vector<DimensionPtr> m_dimensions;
std::vector<DimensionPtr> m_dimensions;

double getValue(PointBuffer& data, Dimension& dim, boost::uint32_t pointIndex);

Expand Down

0 comments on commit c45a13f

Please sign in to comment.