Skip to content

Commit 00cd4b3

Browse files
committedJun 25, 2018
fix travis
1 parent caed3a9 commit 00cd4b3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/core/qgsunittypes.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ class CORE_EXPORT QgsUnitTypes
3939
Q_GADGET
4040

4141
public:
42+
//! Systems of unit measurement
4243
enum SystemOfMeasurement
4344
{
4445
UnknownSystem = 0, //!< Unknown system of measurement

‎src/quickgui/qgsquickcoordinatetransformer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void QgsQuickCoordinateTransformer::updatePosition()
8888
// If Z is NaN, coordinate transformation (proj4) will
8989
// also set X and Y to NaN. But we also want to get projected
9090
// coords if we do not have any Z coordinate.
91-
if ( qIsNaN( z ) )
91+
if ( std::isnan( z ) )
9292
{
9393
z = 0;
9494
}

0 commit comments

Comments
 (0)
Please sign in to comment.