tests/benchmarks/corelib/tools/containers-sequential/main.cpp
changeset 19 fcece45ef507
parent 18 2f34d5167611
equal deleted inserted replaced
18:2f34d5167611 19:fcece45ef507
   131 struct Large { // A "large" item type
   131 struct Large { // A "large" item type
   132     int x[1000];
   132     int x[1000];
   133 };
   133 };
   134 
   134 
   135 // Symbian devices typically have limited memory
   135 // Symbian devices typically have limited memory
   136 #ifdef Q_OS_SYMBIAN
   136 #if defined(Q_OS_SYMBIAN) || defined(Q_WS_WINCE)
   137 #  define LARGE_MAX_SIZE 2000
   137 #  define LARGE_MAX_SIZE 2000
   138 #else
   138 #else
   139 #  define LARGE_MAX_SIZE 20000
   139 #  define LARGE_MAX_SIZE 20000
   140 #endif
   140 #endif
   141 
   141