We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 751c4a9 commit 78b67b9Copy full SHA for 78b67b9
tests/src/core/testqgsexpression.cpp
@@ -5769,6 +5769,11 @@ class TestQgsExpression: public QObject
5769
const HelpTextHash &functionHelp = QgsExpression::functionHelpTexts();
5770
for ( auto helpIt = functionHelp.constBegin(); helpIt != functionHelp.constEnd(); ++ helpIt )
5771
{
5772
+#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR<11
5773
+ if ( helpIt->mName == QLatin1String( "concave_hull" ) )
5774
+ continue;
5775
+#endif
5776
+
5777
for ( auto variantIt = helpIt->mVariants.constBegin(); variantIt != helpIt->mVariants.constEnd(); ++variantIt )
5778
5779
for ( const HelpExample &example : std::as_const( variantIt->mExamples ) )
0 commit comments