Skip to content

Commit

Permalink
Merge pull request #35504 from nyalldawson/int_flag
Browse files Browse the repository at this point in the history
Try to avoid flag operation errors on earlier sip/Python versions
  • Loading branch information
3nids committed Apr 1, 2020
2 parents 3ec5104 + 1121b49 commit eef58e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/processing/qgsprocessingparameters.h
Expand Up @@ -59,7 +59,7 @@ class CORE_EXPORT QgsProcessingFeatureSourceDefinition
* Flags which control source behavior.
* \since QGIS 3.14
*/
enum class Flag
enum class Flag : int
{
FlagOverrideDefaultGeometryCheck = 1 << 0, //!< If set, the default geometry check method (as dictated by QgsProcessingContext) will be overridden for this source
FlagCreateIndividualOutputPerInputFeature = 1 << 1, //!< If set, every feature processed from this source will be placed into its own individually created output destination. Support for this flag depends on how an algorithm is executed.
Expand Down

0 comments on commit eef58e6

Please sign in to comment.