From 83b735b3d8a9c3a0643f454731ecdada2393b306 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Thu, 17 Oct 2019 18:42:11 +0200 Subject: [PATCH] math: fix class/struct inconsistency. --- src/lol/math/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lol/math/vector.h b/src/lol/math/vector.h index 54ba3163..945f55d2 100644 --- a/src/lol/math/vector.h +++ b/src/lol/math/vector.h @@ -89,7 +89,7 @@ struct LOL_ATTR_NODISCARD vec_t private: // Hide all default constructors and destructors; this object // is only intended to exist as part of a union. - template friend class vec_t; + template friend struct vec_t; vec_t() = default; vec_t(vec_t const &) = default;