aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/shared/proparser/proitems.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/shared/proparser/proitems.h b/src/shared/proparser/proitems.h
index 9d851a9d57..a16e0399d1 100644
--- a/src/shared/proparser/proitems.h
+++ b/src/shared/proparser/proitems.h
@@ -350,6 +350,15 @@ inline ProStringList operator+(const ProStringList &one, const ProStringList &tw
typedef QMap<ProKey, ProStringList> 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)