diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-09-22 10:39:58 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-09-22 10:44:35 (GMT) |
commit | ffd6720bacb5f1a9146384debf0cb82377650c43 (patch) | |
tree | 0e5e90ca173ea01660033b1a6600123e4be22c30 /src/corelib/tools | |
parent | 37b0988dcebb6a44a2e50194e78540bf4dd71bc0 (diff) | |
download | Qt-ffd6720bacb5f1a9146384debf0cb82377650c43.zip Qt-ffd6720bacb5f1a9146384debf0cb82377650c43.tar.gz Qt-ffd6720bacb5f1a9146384debf0cb82377650c43.tar.bz2 |
Fix C++0x initializer lists tests.
It was using the wrong macro
Reviewed-by: Thierry
Diffstat (limited to 'src/corelib/tools')
-rw-r--r-- | src/corelib/tools/qvector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qvector.h b/src/corelib/tools/qvector.h index 7eee33d..c16aefb 100644 --- a/src/corelib/tools/qvector.h +++ b/src/corelib/tools/qvector.h @@ -439,7 +439,7 @@ QVector<T>::QVector(int asize, const T &t) template <typename T> QVector<T>::QVector(std::initializer_list<T> args) { - p = malloc(args.size()); + d = malloc(args.size()); d->ref = 1; d->alloc = d->size = args.size(); d->sharable = true; |