Skip to content

Commit

Permalink
Remove unrequired SIP_SKIP
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jun 14, 2017
1 parent 37a306e commit 501081f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion python/core/geometry/qgspoint.sip
Expand Up @@ -126,7 +126,6 @@ class QgsPoint: QgsAbstractGeometry




void setX( double x );
%Docstring
Sets the point's x-coordinate.
Expand Down
2 changes: 1 addition & 1 deletion src/core/geometry/qgspoint.h
Expand Up @@ -70,7 +70,7 @@ class CORE_EXPORT QgsPoint: public QgsAbstractGeometry
* \endcode
*/
#ifndef SIP_RUN
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;
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 );
#else
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 )];
% MethodCode
Expand Down

0 comments on commit 501081f

Please sign in to comment.