Merge branch 'warning_fixes' into 'master'

Try to fix warning

See merge request OpenMesh/OpenMesh!343
This commit is contained in:
Jan Möbius
2023-11-29 11:55:10 +00:00

View File

@@ -17,7 +17,6 @@ template <int DIM> class Vec {
Vec(float x, float y, float z, float w) : data({ x, y, z, w }) {}
Vec() = default;
Vec(Vec<DIM> const &) = default;
float &operator[](int i) { return data[i]; }
float operator[](int i) const { return data[i]; }