Skip to content

Commit

Permalink
Compiler error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Jan 20, 2025
1 parent eea3bec commit bff1ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tudat/simulation/estimation_setup/observations.h
Original file line number Diff line number Diff line change
Expand Up @@ -4529,7 +4529,7 @@ mergeObservationCollections(
std::vector< std::shared_ptr< SingleObservationSet< ObservationScalarType, TimeType > > > combinedObservationSets;
for( unsigned int i = 0; i < observationCollectionList.size( ); i++ )
{
const SortedObservationSets& currentObservationSets = observationCollectionList.at( i )->getObservationsReference( );
auto currentObservationSets = observationCollectionList.at( i )->getObservationsReference( );
{
for( auto obs_it : currentObservationSets )
{
Expand Down

0 comments on commit bff1ccd

Please sign in to comment.