Const the FixedErrorFilter operator().

This commit is contained in:
Jared Boone
2015-11-06 09:40:01 -08:00
parent 93b9b9d9ef
commit 727d4c8a1f
+1 -1
View File
@@ -91,7 +91,7 @@ class FixedErrorFilter {
public:
float operator()(
const float lateness
) {
) const {
return (lateness < 0.0f) ? weight : -weight;
}