From 29c03ea5cff3ef2cd84c843129ef9b2c035cb8a8 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sun, 1 Sep 2019 09:06:49 -0400 Subject: [PATCH] appease the clang beasts --- examples/customization/include/zm/vec3.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/customization/include/zm/vec3.hpp b/examples/customization/include/zm/vec3.hpp index a8301668..ec253dfd 100644 --- a/examples/customization/include/zm/vec3.hpp +++ b/examples/customization/include/zm/vec3.hpp @@ -43,6 +43,12 @@ namespace zm { #pragma warning(pop) #endif + vec3() : x(0), y(0), z(0) { + } + + vec3(float x_, float y_, float z_) : x(x_), y(y_), z(z_) { + } + constexpr float* data() { return elements; }