Move to VS 2010.
Update to Ogre SDK 1.7.1 Removed support for compilers which don't adhere to C++0X
This commit is contained in:
@ -40,7 +40,7 @@ void TestVector::testDotProduct()
|
||||
Vector3DInt8 vecxy(3, 4, 0);
|
||||
Vector3DInt8 vecz(0, 0, 1);
|
||||
|
||||
QCOMPARE(vecxy.dot(vecz), PolyVox::int8_t(0)); //QCOMPARE is very strict on the types matching
|
||||
QCOMPARE(vecxy.dot(vecz), int8_t(0)); //QCOMPARE is very strict on the types matching
|
||||
}
|
||||
|
||||
QTEST_MAIN(TestVector)
|
||||
|
@ -31,8 +31,8 @@ using namespace PolyVox;
|
||||
|
||||
void TestVolume::testSize()
|
||||
{
|
||||
const PolyVox::uint16_t g_uVolumeSideLength = 128;
|
||||
Volume<PolyVox::uint8_t> volData(g_uVolumeSideLength, g_uVolumeSideLength, g_uVolumeSideLength);
|
||||
const uint16_t g_uVolumeSideLength = 128;
|
||||
Volume<uint8_t> volData(g_uVolumeSideLength, g_uVolumeSideLength, g_uVolumeSideLength);
|
||||
|
||||
volData.tidyUpMemory(0);
|
||||
|
||||
|
Reference in New Issue
Block a user