Skip to content

Commit

Permalink
Silence clang warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 8, 2022
1 parent 339ae1f commit a5e14b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/gps/qgsgpslogger.cpp
Expand Up @@ -364,7 +364,7 @@ void QgsGpsLogger::gpsStateChanged( const QgsGpsInformation &info )
}

case Qgis::GpsInformationComponent::Timestamp:
mLastMValue = info.utcDateTime.toMSecsSinceEpoch();
mLastMValue = static_cast< double >( info.utcDateTime.toMSecsSinceEpoch() );
break;

case Qgis::GpsInformationComponent::Location:
Expand Down

0 comments on commit a5e14b4

Please sign in to comment.