From 0f34103f4f38c35e2d5e0c77624eddc93fe3d5b9 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Tue, 8 Aug 2017 15:01:07 +0200 Subject: [PATCH] Fixed warnings with -Weverything --- test/core/core_type_vec3.cpp | 6 +++--- test/core/core_type_vec4.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/core/core_type_vec3.cpp b/test/core/core_type_vec3.cpp index bbbd1841..7565ed64 100644 --- a/test/core/core_type_vec3.cpp +++ b/test/core/core_type_vec3.cpp @@ -7,9 +7,9 @@ #include #include -static glm::vec3 v1; -static glm::vec3 v2(1); -static glm::vec3 v3(1, 1, 1); +static glm::vec3 g1; +static glm::vec3 g2(1); +static glm::vec3 g3(1, 1, 1); int test_vec3_ctor() { diff --git a/test/core/core_type_vec4.cpp b/test/core/core_type_vec4.cpp index 79c62c04..a49647a8 100644 --- a/test/core/core_type_vec4.cpp +++ b/test/core/core_type_vec4.cpp @@ -8,9 +8,9 @@ #include #include -static glm::vec4 v1; -static glm::vec4 v2(1); -static glm::vec4 v3(1, 1, 1, 1); +static glm::vec4 g1; +static glm::vec4 g2(1); +static glm::vec4 g3(1, 1, 1, 1); template struct mask