Fixed clang warning

This commit is contained in:
Jan Möbius
2018-05-08 15:33:26 +02:00
parent dcc6b433f9
commit ad6eab8bee

View File

@@ -13,7 +13,7 @@ template <int DIM> class Vec {
// Constructor with DIM components
Vec(float x) : data({ x }) {}
Vec(float x, float y) : data({ x, y }) {}
Vec(float x, float y, float z) : data({ x, y, z }) {}
Vec(float x, float y, float z) : data({{ x, y, z }}) {}
Vec(float x, float y, float z, float w) : data({ x, y, z, w }) {}
Vec() = default;