Fix -Wdeprecated-copy

This commit is contained in:
wmayer
2020-06-11 23:54:46 +02:00
committed by wwmayer
parent a455927d4a
commit 8b5e05d1dc
3 changed files with 23 additions and 0 deletions

View File

@@ -39,6 +39,11 @@
using namespace MeshCore;
using namespace Wm4;
MeshPointArray::MeshPointArray(const MeshPointArray& ary)
: TMeshPointArray(ary)
{
}
unsigned long MeshPointArray::Get (const MeshPoint &rclPoint)
{
iterator clIter;
@@ -97,6 +102,12 @@ void MeshPointArray::Transform(const Base::Matrix4D& mat)
mat.multVec(*pP,*pP);
}
MeshFacetArray::MeshFacetArray(const MeshFacetArray& ary)
: TMeshFacetArray(ary)
{
}
void MeshFacetArray::Erase (_TIterator pIter)
{
unsigned long i, *pulN;