Removed some unused variable warning.

This commit is contained in:
unknown
2012-11-02 15:23:24 +01:00
parent b92d3fbfc0
commit 57350a55d6
4 changed files with 13 additions and 13 deletions

View File

@@ -45,7 +45,7 @@ namespace PolyVox
/// \sa VolumeResampler
////////////////////////////////////////////////////////////////////////////////
template <typename VoxelType>
RawVolume<VoxelType>::RawVolume(const RawVolume<VoxelType>& rhs)
RawVolume<VoxelType>::RawVolume(const RawVolume<VoxelType>& /*rhs*/)
{
assert(false); // See function comment above.
}
@@ -68,7 +68,7 @@ namespace PolyVox
/// \sa VolumeResampler
////////////////////////////////////////////////////////////////////////////////
template <typename VoxelType>
RawVolume<VoxelType>& RawVolume<VoxelType>::operator=(const RawVolume<VoxelType>& rhs)
RawVolume<VoxelType>& RawVolume<VoxelType>::operator=(const RawVolume<VoxelType>& /*rhs*/)
{
assert(false); // See function comment above.
}