diff --git a/library/PolyVoxCore/include/Array.h b/library/PolyVoxCore/include/Array.h index decc82c9..b7d4d4b9 100644 --- a/library/PolyVoxCore/include/Array.h +++ b/library/PolyVoxCore/include/Array.h @@ -143,7 +143,7 @@ namespace PolyVox assert(false); } - Array& Array::operator=(const Array& rhs) + Array& /*Array::*/operator=(const Array& rhs) { //Not implemented assert(false); @@ -247,7 +247,7 @@ namespace PolyVox assert(false); } - Array<1, ElementType>& Array<1, ElementType>::operator=(const Array<1, ElementType>& rhs) + Array<1, ElementType>& /*Array<1, ElementType>::*/operator=(const Array<1, ElementType>& rhs) { //Not implemented assert(false); @@ -328,4 +328,5 @@ namespace PolyVox #include "Array.inl" -#endif \ No newline at end of file +#endif + diff --git a/library/PolyVoxCore/include/PolyVoxImpl/SubArray.inl b/library/PolyVoxCore/include/PolyVoxImpl/SubArray.inl index 8c88890e..83b5a7e9 100644 --- a/library/PolyVoxCore/include/PolyVoxImpl/SubArray.inl +++ b/library/PolyVoxCore/include/PolyVoxImpl/SubArray.inl @@ -23,6 +23,8 @@ distribution. *******************************************************************************/ #pragma endregion +#include + namespace PolyVox { template @@ -44,7 +46,7 @@ namespace PolyVox } template - SubArray::SubArray(ElementType * pElements, uint32_t * pDimensions, uint32_t * pOffsets) + SubArray::SubArray/**/(ElementType * pElements, uint32_t * pDimensions, uint32_t * pOffsets) :m_pElements(pElements) ,m_pDimensions(pDimensions) ,m_pOffsets(pOffsets) @@ -68,9 +70,10 @@ namespace PolyVox } template - SubArray<1, ElementType>::SubArray<1, ElementType>(ElementType * pElements, uint32_t * pDimensions, uint32_t * /*pOffsets*/) + SubArray<1, ElementType>::SubArray/*<1, ElementType>*/(ElementType * pElements, uint32_t * pDimensions, uint32_t * /*pOffsets*/) :m_pDimensions(pDimensions) ,m_pElements(pElements) { } -}//namespace PolyVox \ No newline at end of file +}//namespace PolyVox +