Fix deprecation warning on Qt 5.12+

See https://doc.qt.io/QT-5/qregularexpression.html#PatternOption-enum
about deprecated QRegularExpression enum values.
This commit is contained in:
leha-bot 2019-07-24 13:53:51 +03:00 committed by Alex
parent 7a88eeda6a
commit 3b5af27889
1 changed files with 4 additions and 1 deletions

View File

@ -69,7 +69,10 @@ enum class RegExOption {
InvertedGreediness = QRegularExpression::InvertedGreedinessOption,
DontCapture = QRegularExpression::DontCaptureOption,
UseUnicodeProperties = QRegularExpression::UseUnicodePropertiesOption,
#ifndef OS_MAC_OLD
#if (!defined(OS_MAC_OLD) && ((QT_VERSION < QT_VERSION_CHECK(5, 12, 0)) && (QT_VERSION >= QT_VERSION_CHECK(5, 4, 0))))
/// @note These flags are introduced since Qt 5.4 and become deprecated in Qt 5.12, so we must
/// drop it conditionally.
/// See https://doc.qt.io/QT-5/qregularexpression.html#PatternOption-enum for details.
OptimizeOnFirstUsage = QRegularExpression::OptimizeOnFirstUsageOption,
DontAutomaticallyOptimize = QRegularExpression::DontAutomaticallyOptimizeOption,
#endif // OS_MAC_OLD