Skip to content

Commit

Permalink
Fix unitialized value
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jan 12, 2025
1 parent 4bf0d17 commit 790dcb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/positioning/positioning.h
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class Positioning : public QObject
QgsQuickCoordinateTransformer *mCoordinateTransformer = nullptr;
QgsPoint mSourcePosition;
QgsPoint mProjectedPosition;
double mProjectedHorizontalAccuracy;
double mProjectedHorizontalAccuracy = 0.0;
virtual QList<QPair<QString, QVariant>> details() const { return {}; }

bool mInternalPermissionChecked = false;
Expand Down

0 comments on commit 790dcb9

Please sign in to comment.