diff options
Diffstat (limited to 'gfx/models/vertex.h')
-rw-r--r-- | gfx/models/vertex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx/models/vertex.h b/gfx/models/vertex.h index 3c6215f..5b858de 100644 --- a/gfx/models/vertex.h +++ b/gfx/models/vertex.h @@ -8,8 +8,8 @@ public: #ifndef __cpp_aggregate_paren_init constexpr Vertex( RelativePosition3D pos, TextureRelCoord texCoord, Normal3D normal, RGBA colour = {}, GLuint material = 0) : - pos {std::move(pos)}, - texCoord {std::move(texCoord)}, normal {std::move(normal)}, colour {std::move(colour)}, material {material} + pos {std::move(pos)}, texCoord {std::move(texCoord)}, normal {std::move(normal)}, colour {std::move(colour)}, + material {material} { } #endif |