Mark MatchedFilter::is_new_decimation_cycle() as const.

This commit is contained in:
Jared Boone 2015-11-05 22:08:55 -08:00
parent 3c33e20156
commit 4afcc83873

View File

@ -77,7 +77,7 @@ private:
decimation_phase = (decimation_phase + 1) % decimation_factor_; decimation_phase = (decimation_phase + 1) % decimation_factor_;
} }
bool is_new_decimation_cycle() { bool is_new_decimation_cycle() const {
return (decimation_phase == 0); return (decimation_phase == 0);
} }
}; };