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

rm default c'tor and operator

parent e11c8a2c
No related branches found
No related tags found
1 merge request!1012various corrections to get rid of warnings
...@@ -84,8 +84,6 @@ public: ...@@ -84,8 +84,6 @@ public:
DoubleDescriptor() = default; DoubleDescriptor() = default;
DoubleDescriptor(const DoubleDescriptor& other) = default;
public: public:
//! Return the current value of the handled parameter. //! Return the current value of the handled parameter.
operator double() const; operator double() const;
......
...@@ -33,9 +33,6 @@ struct Vector3D { ...@@ -33,9 +33,6 @@ struct Vector3D {
Vector3D(float); Vector3D(float);
Vector3D(float, float, float); Vector3D(float, float, float);
Vector3D(const Vector3D&) = default;
Vector3D& operator=(const Vector3D&) = default;
Vector3D(QVector3D const&); Vector3D(QVector3D const&);
operator 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