@@ -63,7 +63,7 @@ struct Point
63
63
* @brief Construct a new Point object
64
64
*
65
65
*/
66
- Point () {}
66
+ Point () = default ;
67
67
/* *
68
68
* @brief Construct a new Point object
69
69
* @param _x int16_t
@@ -85,7 +85,7 @@ struct PointF
85
85
* @brief Construct a new Point F object
86
86
*
87
87
*/
88
- PointF () {}
88
+ PointF () = default ;
89
89
/* *
90
90
* @brief Construct a new Point F object
91
91
*
@@ -109,7 +109,7 @@ struct Pose
109
109
/* *
110
110
* @brief Construct a new Pose object
111
111
*/
112
- Pose () {}
112
+ Pose () = default ;
113
113
/* *
114
114
* @brief Construct a new Pose object
115
115
*
@@ -134,7 +134,7 @@ struct PoseF
134
134
/* *
135
135
* @brief Construct a new PoseF object
136
136
*/
137
- PoseF () {}
137
+ PoseF () = default ;
138
138
/* *
139
139
* @brief Construct a new PoseF object
140
140
*
@@ -159,7 +159,7 @@ struct Point3D
159
159
/* *
160
160
* @brief Construct a new Point3D object
161
161
*/
162
- Point3D () {}
162
+ Point3D () = default ;
163
163
/* *
164
164
* @brief Construct a new Point3D object
165
165
*
@@ -184,7 +184,7 @@ struct PointF3D
184
184
/* *
185
185
* @brief Construct a new Point3D object
186
186
*/
187
- PointF3D () {}
187
+ PointF3D () = default ;
188
188
/* *
189
189
* @brief Construct a new Point3D object
190
190
*
@@ -211,7 +211,7 @@ struct Point4D
211
211
/* *
212
212
* @brief Construct a new Point4D object
213
213
*/
214
- Point4D () {}
214
+ Point4D () = default ;
215
215
/* *
216
216
* @brief Construct a new Point4D object
217
217
*
@@ -271,7 +271,7 @@ struct PolarPoint
271
271
/* *
272
272
* @brief Construct a new Polar Point object
273
273
*/
274
- PolarPoint () {}
274
+ PolarPoint () = default ;
275
275
/* *
276
276
*
277
277
* @brief Construct a new Polar Point object
0 commit comments