From 935e6a2b330789925a37e85b171315044dac2ada Mon Sep 17 00:00:00 2001 From: Alex Blasche Date: Tue, 16 Sep 2014 15:22:09 +0200 Subject: Make qtconcurrent map example compile on exotic compilers Task-number: QTBUG-9015 Change-Id: I1019765312c8d55728023642601199506269be6d Reviewed-by: Mitch Curtis --- examples/qtconcurrent/map/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/qtconcurrent/map/main.cpp') diff --git a/examples/qtconcurrent/map/main.cpp b/examples/qtconcurrent/map/main.cpp index 01595f0c2e..cec07dad66 100644 --- a/examples/qtconcurrent/map/main.cpp +++ b/examples/qtconcurrent/map/main.cpp @@ -64,7 +64,7 @@ int main(int argc, char *argv[]) // Use QtConcurrentBlocking::mapped to apply the scale function to all the // images in the list. - QList thumbnails = QtConcurrent::blockingMapped(images, scale); + QList thumbnails = QtConcurrent::blockingMapped >(images, scale); return 0; } -- cgit v1.2.3