Const the FixedErrorFilter operator().

This commit is contained in:
Jared Boone 2015-10-02 17:49:59 -07:00
parent 93b9b9d9ef
commit 727d4c8a1f

View File

@ -91,7 +91,7 @@ class FixedErrorFilter {
public: public:
float operator()( float operator()(
const float lateness const float lateness
) { ) const {
return (lateness < 0.0f) ? weight : -weight; return (lateness < 0.0f) ? weight : -weight;
} }