Skip to content
Snippets Groups Projects
Commit bc345d8b authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Test no longer crashes, but it fails

parent e3c8d133
No related branches found
No related tags found
No related merge requests found
...@@ -51,8 +51,8 @@ void ProcessorGnssSingleDiff::process(CaptureBasePtr _capture_ptr) ...@@ -51,8 +51,8 @@ void ProcessorGnssSingleDiff::process(CaptureBasePtr _capture_ptr)
// EXTRACT AND ADD FEATURES // EXTRACT AND ADD FEATURES
//WOLF_DEBUG("adding the feature..."); //WOLF_DEBUG("adding the feature...");
FeatureBasePtr ftr_ptr = last_capture_ptr_->addFeature(std::make_shared<FeatureGnssSingleDiff>(last_capture_ptr_->getData(),last_capture_ptr_->getDataCovariance())); // FeatureBasePtr ftr_ptr = last_capture_ptr_->addFeature(std::make_shared<FeatureGnssSingleDiff>(last_capture_ptr_->getData(),last_capture_ptr_->getDataCovariance()));
FeatureBasePtr ftr_ptr = FeatureBase::emplace<FeatureGnssSingleDiff>(last_capture_ptr_, last_capture_ptr_->getData(),last_capture_ptr_->getDataCovariance());
// ADD CONSTRAINT // ADD CONSTRAINT
FactorBasePtr fac_ptr; FactorBasePtr fac_ptr;
//WOLF_DEBUG("adding the factor..."); //WOLF_DEBUG("adding the factor...");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment