Skip to content

Commit 501081f

Browse files
committed
Remove unrequired SIP_SKIP
1 parent 37a306e commit 501081f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python/core/geometry/qgspoint.sip

-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ class QgsPoint: QgsAbstractGeometry
126126

127127

128128

129-
130129
void setX( double x );
131130
%Docstring
132131
Sets the point's x-coordinate.

src/core/geometry/qgspoint.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class CORE_EXPORT QgsPoint: public QgsAbstractGeometry
7070
* \endcode
7171
*/
7272
#ifndef SIP_RUN
73-
QgsPoint( double x = 0.0, double y = 0.0, double z = std::numeric_limits<double>::quiet_NaN(), double m = std::numeric_limits<double>::quiet_NaN(), QgsWkbTypes::Type wkbType = QgsWkbTypes::Unknown ) SIP_SKIP;
73+
QgsPoint( double x = 0.0, double y = 0.0, double z = std::numeric_limits<double>::quiet_NaN(), double m = std::numeric_limits<double>::quiet_NaN(), QgsWkbTypes::Type wkbType = QgsWkbTypes::Unknown );
7474
#else
7575
QgsPoint( double x = 0.0, double y = 0.0, SIP_PYOBJECT z = Py_None, SIP_PYOBJECT m = Py_None, QgsWkbTypes::Type wkbType = QgsWkbTypes::Unknown ) [( double x = 0.0, double y = 0.0, double z = 0.0, double m = 0.0, QgsWkbTypes::Type wkbType = QgsWkbTypes::Unknown )];
7676
% MethodCode

0 commit comments

Comments
 (0)