1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-12-18 14:28:05 +00:00

fix: use gnss_shared_ptr instead of std::shared_ptr

This commit is contained in:
Victor Castillo
2025-06-10 12:41:19 +02:00
committed by Carles Fernandez
parent 743e321b10
commit 68ed4d5a01
2 changed files with 2 additions and 2 deletions

View File

@@ -601,7 +601,7 @@ SensorDataSource::sptr FileSourceBase::create_sensor_data_source()
{
sensor_data_source_configuration_.set_items_per_sample(2);
}
sensor_data_source_ = std::make_shared<SensorDataSource>(
sensor_data_source_ = gnss_make_shared<SensorDataSource>(
sensor_data_source_configuration_,
gr::io_signature::make(1, 1, item_size_));
DLOG(INFO) << "sensor_data_source(" << sensor_data_source_->unique_id() << ")";