Try to fix warning

This commit is contained in:
Jan Möbius
2023-11-29 11:54:21 +01:00
parent f1bc6c07c9
commit 2d013a98cc

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]; }