qt5base-lts/src
Marc Mutz cf9d112d7a qlalr: remove uses of inefficient QLists
For QList<QLinkedList<T>::iterator>, mark the iterator Q_PRIMITIVE_TYPE.
This should be done in Qt itself, but would be binary incompatible.

For two other types that are used as values in QMultiMap, replaced
   foreach (x, map.values(y))
with
   auto range = map.equal_range(y);
   for (auto it = range.first; it != ramge.second; ++it)
       x = *it;
which doesn't require a temporary QList.

Change-Id: I9ddd15dd9b1d5bb3000833d14ed911451a272328
Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
2016-01-26 11:21:37 +00:00
..
3rdparty Update the Intel copyright year 2016-01-21 22:44:16 +00:00
android Helper function needed to run Runnables on Android UI thread easily. 2016-01-15 16:13:29 +00:00
angle Fix wrapper batch file names for flex/bison in ANGLE build 2016-01-08 18:51:21 +00:00
concurrent Updated license headers 2016-01-15 12:25:24 +00:00
corelib QStringRef: add missing op[] 2016-01-26 11:21:09 +00:00
dbus Add Intel copyright to files that Intel has had non-trivial contribution 2016-01-21 22:44:21 +00:00
gui Remove support for old/deprecated gl function names 2016-01-26 07:50:49 +00:00
network Add Intel copyright to files that Intel has had non-trivial contribution 2016-01-21 22:44:21 +00:00
opengl Updated license headers 2016-01-21 18:55:18 +00:00
openglextensions Fix typo when resolving EGL extension. 2015-04-23 11:54:36 +00:00
platformheaders Updated license headers 2016-01-15 12:25:24 +00:00
platformsupport Updated license headers 2016-01-15 12:25:24 +00:00
plugins eglfs: use QGenericUnixTheme if requested 2016-01-18 08:32:59 +00:00
printsupport Updated license headers 2016-01-21 18:55:18 +00:00
sql Updated license headers 2016-01-15 12:25:24 +00:00
testlib Add TeamCity logging feature to testlib 2016-01-23 18:30:58 +00:00
tools qlalr: remove uses of inefficient QLists 2016-01-26 11:21:37 +00:00
widgets Add Intel copyright to files that Intel has had non-trivial contribution 2016-01-21 22:44:21 +00:00
winmain winrt: handle PrelaunchActivated property to pass certification 2016-01-05 13:04:09 +00:00
xml Updated license headers 2016-01-21 18:55:18 +00:00
src.pro make a proper header-only module for QtZlib 2015-11-17 20:22:17 +00:00