diff --git a/src/shared/proparser/proitems.h b/src/shared/proparser/proitems.h index 3058b25c483..7fbeb54f1cf 100644 --- a/src/shared/proparser/proitems.h +++ b/src/shared/proparser/proitems.h @@ -257,6 +257,15 @@ inline ProStringList operator+(const ProStringList &one, const ProStringList &tw typedef QHash ProValueMap; +// For std::list (sic!) +#ifdef Q_CC_MSVC +inline bool operator<(const ProValueMap &, const ProValueMap &) +{ + Q_ASSERT(false); + return false; +} +#endif + // These token definitions affect both ProFileEvaluator and ProWriter enum ProToken { TokTerminator = 0, // end of stream (possibly not included in length; must be zero)