Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 15, 2024
1 parent e4bb317 commit 72f07dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Merges the current statistics with the statistics from ``stats``
Converts the current statistics object into JSON object
%End

static QgsPointCloudStatistics fromStatisticsJson( QByteArray stats );
static QgsPointCloudStatistics fromStatisticsJson( const QByteArray &stats );
%Docstring
Creates a statistics object from the JSON object ``stats``
%End
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Merges the current statistics with the statistics from ``stats``
Converts the current statistics object into JSON object
%End

static QgsPointCloudStatistics fromStatisticsJson( QByteArray stats );
static QgsPointCloudStatistics fromStatisticsJson( const QByteArray &stats );
%Docstring
Creates a statistics object from the JSON object ``stats``
%End
Expand Down
2 changes: 1 addition & 1 deletion src/core/pointcloud/qgspointcloudstatistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class CORE_EXPORT QgsPointCloudStatistics
QByteArray toStatisticsJson() const;

//! Creates a statistics object from the JSON object \a stats
static QgsPointCloudStatistics fromStatisticsJson( QByteArray stats );
static QgsPointCloudStatistics fromStatisticsJson( const QByteArray &stats );

#ifndef SIP_RUN
//! Returns a map object containing all the statistics
Expand Down

0 comments on commit 72f07dc

Please sign in to comment.