Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 4, 2018
1 parent 1ea20a4 commit 8cc7153
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/geometry/qgsgeometry.h
Expand Up @@ -887,7 +887,7 @@ class CORE_EXPORT QgsGeometry
SideLeft = 0, //!< Buffer to left of line
SideRight, //!< Buffer to right of line
};
Q_ENUM( BufferSide );
Q_ENUM( BufferSide )

//! End cap styles for buffers
enum EndCapStyle
Expand All @@ -896,7 +896,7 @@ class CORE_EXPORT QgsGeometry
CapFlat, //!< Flat cap (in line with start/end of line)
CapSquare, //!< Square cap (extends past start/end of line by buffer distance)
};
Q_ENUM( EndCapStyle );
Q_ENUM( EndCapStyle )

//! Join styles for buffers
enum JoinStyle
Expand All @@ -905,7 +905,7 @@ class CORE_EXPORT QgsGeometry
JoinStyleMiter, //!< Use mitered joins
JoinStyleBevel, //!< Use beveled joins
};
Q_ENUM( JoinStyle );
Q_ENUM( JoinStyle )

/**
* Returns a buffer region around this geometry having the given width and with a specified number
Expand Down

0 comments on commit 8cc7153

Please sign in to comment.