Skip to content

Commit ff1f8ad

Browse files
committed
remove "template" keyword
1 parent fd7f546 commit ff1f8ad

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ct_optcon/include/ct/optcon/filter/UnscentedKalmanFilter-impl.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ auto UnscentedKalmanFilter<STATE_DIM, CONTROL_DIM, OUTPUT_DIM, SCALAR>::update(c
101101
SigmaPoints<OUTPUT_DIM> sigmaMeasurementPoints;
102102

103103
// Predict measurement (and corresponding sigma points)
104-
ct::core::OutputVector<OUTPUT_DIM, SCALAR> y =
105-
this->template computeMeasurementPrediction(sigmaMeasurementPoints, t);
104+
ct::core::OutputVector<OUTPUT_DIM, SCALAR> y = this->computeMeasurementPrediction(sigmaMeasurementPoints, t);
106105

107106
// Compute innovation covariance
108107
Covariance<OUTPUT_DIM> P;

0 commit comments

Comments
 (0)