Fixed code to use proper zero initialisation.

This commit is contained in:
David Williams
2013-03-04 22:01:43 +01:00
parent 6374ebf092
commit 5cab70b24c
16 changed files with 22 additions and 32 deletions

View File

@@ -187,7 +187,7 @@ namespace PolyVox
{
//Should never happen
POLYVOX_ASSERT(false, "Invalid case.");
return VoxelType(0);
return VoxelType();
}
}
}