WinCE fixes

This commit is contained in:
Guenter Obiltschnig
2012-10-15 09:29:26 +00:00
parent dc11b4aa65
commit b6963f0bc9
10 changed files with 157 additions and 81 deletions

View File

@@ -557,8 +557,8 @@ void TuplesTest::testTupleOrder()
void TuplesTest::testMemOverhead()
{
Tuple<short> small(0);
int sz = sizeof(small);
Tuple<short> smallOne(0);
int sz = sizeof(smallOne);
assert (sz == 4 || sz == 8); //depending on architecture and alignment
Tuple<long> notSoSmall(0);
sz = sizeof(notSoSmall);