summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorminiak <milan.burda@gmail.com>2011-03-31 14:12:10 (GMT)
committerJoão Abecasis <joao.abecasis@nokia.com>2011-03-31 14:12:10 (GMT)
commit3ae213cdeffae107ffa5a4b552c6351123dcc5cb (patch)
treec4094917e6cfcb50c3fe86b486ee472da688a47e /tests
parentb202e94bb1e5985aeccea360deef368580e72369 (diff)
downloadQt-3ae213cdeffae107ffa5a4b552c6351123dcc5cb.zip
Qt-3ae213cdeffae107ffa5a4b552c6351123dcc5cb.tar.gz
Qt-3ae213cdeffae107ffa5a4b552c6351123dcc5cb.tar.bz2
Remove NOPODINITIALIZATION
Merge-request: 1011 Reviewed-by: João Abecasis <joao.abecasis@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/collections/tst_collections.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/collections/tst_collections.cpp b/tests/auto/collections/tst_collections.cpp
index 9b24660..b1ea326 100644
--- a/tests/auto/collections/tst_collections.cpp
+++ b/tests/auto/collections/tst_collections.cpp
@@ -104,13 +104,6 @@ void foo()
#include "q3cleanuphandler.h"
#endif
-// Do not test initialization of pods on msvc6 and msvc 2002
-// This is a known issue
-#if defined Q_CC_MSVC && _MSC_VER < 1310
-# define NOPODINITIALIZATION
-#endif
-
-
template class QList<int>;
//TESTED_FILES=
@@ -198,10 +191,6 @@ QT_END_NAMESPACE
struct Pod {
int i1, i2;
-
-#if defined NOPODINITIALIZATION
- Pod() : i1(0), i2(0) { }
-#endif
};
tst_Collections::tst_Collections()