diff --git a/library/PolyVoxCore/include/PolyVoxCore/BaseVolume.inl b/library/PolyVoxCore/include/PolyVoxCore/BaseVolume.inl index e84b6fed..80720d37 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/BaseVolume.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/BaseVolume.inl @@ -42,7 +42,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - BaseVolume::BaseVolume(const BaseVolume& rhs) + BaseVolume::BaseVolume(const BaseVolume& /*rhs*/) { assert(false); // See function comment above. } @@ -63,7 +63,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - BaseVolume& BaseVolume::operator=(const BaseVolume& rhs) + BaseVolume& BaseVolume::operator=(const BaseVolume& /*rhs*/) { assert(false); // See function comment above. } @@ -160,7 +160,7 @@ namespace PolyVox /// \return The voxel value //////////////////////////////////////////////////////////////////////////////// template - VoxelType BaseVolume::getVoxelAt(int32_t uXPos, int32_t uYPos, int32_t uZPos) const + VoxelType BaseVolume::getVoxelAt(int32_t /*uXPos*/, int32_t /*uYPos*/, int32_t /*uZPos*/) const { assert(false); return VoxelType(); @@ -171,7 +171,7 @@ namespace PolyVox /// \return The voxel value //////////////////////////////////////////////////////////////////////////////// template - VoxelType BaseVolume::getVoxelAt(const Vector3DInt32& v3dPos) const + VoxelType BaseVolume::getVoxelAt(const Vector3DInt32& /*v3dPos*/) const { assert(false); return VoxelType(); @@ -181,7 +181,7 @@ namespace PolyVox /// \param tBorder The value to use for voxels outside the volume. //////////////////////////////////////////////////////////////////////////////// template - void BaseVolume::setBorderValue(const VoxelType& tBorder) + void BaseVolume::setBorderValue(const VoxelType& /*tBorder*/) { assert(false); } @@ -194,7 +194,7 @@ namespace PolyVox /// \return whether the requested position is inside the volume //////////////////////////////////////////////////////////////////////////////// template - bool BaseVolume::setVoxelAt(int32_t uXPos, int32_t uYPos, int32_t uZPos, VoxelType tValue) + bool BaseVolume::setVoxelAt(int32_t /*uXPos*/, int32_t /*uYPos*/, int32_t /*uZPos*/, VoxelType /*tValue*/) { assert(false); return false; @@ -206,7 +206,7 @@ namespace PolyVox /// \return whether the requested position is inside the volume //////////////////////////////////////////////////////////////////////////////// template - bool BaseVolume::setVoxelAt(const Vector3DInt32& v3dPos, VoxelType tValue) + bool BaseVolume::setVoxelAt(const Vector3DInt32& /*v3dPos*/, VoxelType /*tValue*/) { assert(false); return false; diff --git a/library/PolyVoxCore/include/PolyVoxCore/LargeVolume.inl b/library/PolyVoxCore/include/PolyVoxCore/LargeVolume.inl index 5e1c42a9..4e679477 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/LargeVolume.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/LargeVolume.inl @@ -83,7 +83,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - LargeVolume::LargeVolume(const LargeVolume& rhs) + LargeVolume::LargeVolume(const LargeVolume& /*rhs*/) { assert(false); // See function comment above. } @@ -106,7 +106,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - LargeVolume& LargeVolume::operator=(const LargeVolume& rhs) + LargeVolume& LargeVolume::operator=(const LargeVolume& /*rhs*/) { assert(false); // See function comment above. } diff --git a/library/PolyVoxCore/include/PolyVoxCore/RawVolume.inl b/library/PolyVoxCore/include/PolyVoxCore/RawVolume.inl index e1661999..a40fb53b 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/RawVolume.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/RawVolume.inl @@ -45,7 +45,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - RawVolume::RawVolume(const RawVolume& rhs) + RawVolume::RawVolume(const RawVolume& /*rhs*/) { assert(false); // See function comment above. } @@ -68,7 +68,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - RawVolume& RawVolume::operator=(const RawVolume& rhs) + RawVolume& RawVolume::operator=(const RawVolume& /*rhs*/) { assert(false); // See function comment above. } diff --git a/library/PolyVoxCore/include/PolyVoxCore/SimpleVolume.inl b/library/PolyVoxCore/include/PolyVoxCore/SimpleVolume.inl index 054dc314..12cee40f 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/SimpleVolume.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/SimpleVolume.inl @@ -44,7 +44,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - SimpleVolume::SimpleVolume(const SimpleVolume& rhs) + SimpleVolume::SimpleVolume(const SimpleVolume& /*rhs*/) { assert(false); // See function comment above. } @@ -67,7 +67,7 @@ namespace PolyVox /// \sa VolumeResampler //////////////////////////////////////////////////////////////////////////////// template - SimpleVolume& SimpleVolume::operator=(const SimpleVolume& rhs) + SimpleVolume& SimpleVolume::operator=(const SimpleVolume& /*rhs*/) { assert(false); // See function comment above. }