Skip to content
Snippets Groups Projects
Commit f536895e authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

ba3d: Vector3D: declare copy assignement opr

following deprecation warnings
parent aaf684b9
No related branches found
No related tags found
1 merge request!1012various corrections to get rid of warnings
......@@ -34,6 +34,7 @@ struct Vector3D {
Vector3D(float, float, float);
Vector3D(const Vector3D&) = default;
Vector3D& operator=(const Vector3D&) = default;
Vector3D(QVector3D const&);
operator QVector3D() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment