Fix more clang issues with FactorIndices
parent
e05e6e9700
commit
22d9b162d2
|
@ -216,7 +216,7 @@ TEST( BatchFixedLagSmoother, Example )
|
|||
Timestamps emptyNewTimestamps;
|
||||
|
||||
size_t factorIndex = 6; // any index that does not break connectivity of the graph
|
||||
FastVector<size_t> factorToRemove;
|
||||
FactorIndices factorToRemove;
|
||||
factorToRemove.push_back(factorIndex);
|
||||
|
||||
const NonlinearFactorGraph smootherFactorsBeforeRemove = smoother.getFactors();
|
||||
|
|
|
@ -206,7 +206,7 @@ TEST( IncrementalFixedLagSmoother, Example )
|
|||
Timestamps emptyNewTimestamps;
|
||||
|
||||
size_t factorIndex = 25; // any index that does not break connectivity of the graph
|
||||
FastVector<size_t> factorToRemove;
|
||||
FactorIndices factorToRemove;
|
||||
factorToRemove.push_back(factorIndex);
|
||||
|
||||
const NonlinearFactorGraph smootherFactorsBeforeRemove = smoother.getFactors();
|
||||
|
|
Loading…
Reference in New Issue