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

@@ -41,6 +41,14 @@ struct Point3d
{
}
Point3d(const Point3d& pnt) : p(pnt.p), i(pnt.i)
{
}
~Point3d()
{
}
inline value_type operator[](const int N) const
{
return p[N];