Removed the default value for emptyVoxelExample as it caused compile errors on VS2010.

This commit is contained in:
Daviw Williams
2013-05-14 15:44:56 +02:00
parent ee299a45f0
commit e405b46b61
2 changed files with 5 additions and 4 deletions

View File

@ -41,7 +41,7 @@ namespace PolyVox
/// Pick the first solid voxel along a vector
template<typename VolumeType>
PickResult pickVoxel(VolumeType* volData, const Vector3DFloat& v3dStart, const Vector3DFloat& v3dDirectionAndLength, const typename VolumeType::VoxelType& emptyVoxelExample = typename VolumeType::VoxelType());
PickResult pickVoxel(VolumeType* volData, const Vector3DFloat& v3dStart, const Vector3DFloat& v3dDirectionAndLength, const typename VolumeType::VoxelType& emptyVoxelExample);
}
#include "PolyVoxCore/Picking.inl"