summaryrefslogtreecommitdiffstats
path: root/src/corelib/concurrent/qtconcurrentiteratekernel.h
diff options
context:
space:
mode:
authorMorten Sørvig <msorvig@trolltech.com>2009-05-18 12:21:35 (GMT)
committerMorten Sørvig <msorvig@trolltech.com>2009-05-18 12:23:48 (GMT)
commit3e5abb158c1924e555dc4142c4be89adc517b8c1 (patch)
tree54577d8e36e25ff4e527339ebcb0052127c566fa /src/corelib/concurrent/qtconcurrentiteratekernel.h
parentd085b0bf69ab460d228c4d7b7984f94957dec853 (diff)
downloadQt-3e5abb158c1924e555dc4142c4be89adc517b8c1.zip
Qt-3e5abb158c1924e555dc4142c4be89adc517b8c1.tar.gz
Qt-3e5abb158c1924e555dc4142c4be89adc517b8c1.tar.bz2
Make QtConcurrent compile in S60.
- Use clock() on Symbian for timing. - Really don't use the STL when QT_NO_STL is defined. selectIteration decides how to iterate over the collection based on the iterator type (random access or not). Fall back to (potentially) slower forward iteration when QT_NO_STL is defined. This isn't a complete fix, the compiler still gets confused by some of the map() overloads, so QtConcurrent is still officially falls in the "Not supported" bin on S60. Revby: jbarron
Diffstat (limited to 'src/corelib/concurrent/qtconcurrentiteratekernel.h')
-rw-r--r--src/corelib/concurrent/qtconcurrentiteratekernel.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/corelib/concurrent/qtconcurrentiteratekernel.h b/src/corelib/concurrent/qtconcurrentiteratekernel.h
index 38d2824..5cf4ebe 100644
--- a/src/corelib/concurrent/qtconcurrentiteratekernel.h
+++ b/src/corelib/concurrent/qtconcurrentiteratekernel.h
@@ -181,7 +181,10 @@ public:
typedef T ResultType;
IterateKernel(Iterator _begin, Iterator _end)
-#ifndef QT_NO_PARTIAL_TEMPLATE_SPECIALIZATION
+#if defined (QT_NO_STL)
+ : begin(_begin), end(_end), current(_begin), currentIndex(0),
+ forIteration(false), progressReportingEnabled(true)
+#elif !defined(QT_NO_PARTIAL_TEMPLATE_SPECIALIZATION)
: begin(_begin), end(_end), current(_begin), currentIndex(0),
forIteration(selectIteration(typename std::iterator_traits<Iterator>::iterator_category())), progressReportingEnabled(true)
#else
@@ -189,7 +192,12 @@ public:
forIteration(selectIteration(std::iterator_category(_begin))), progressReportingEnabled(true)
#endif
{
+#if defined (QT_NO_STL)
+ iterationCount = 0;
+#else
iterationCount = forIteration ? std::distance(_begin, _end) : 0;
+
+#endif
}
virtual ~IterateKernel() { }