From 450d6b4ecc600f871c3ea9c16d7a19de41b6d874 Mon Sep 17 00:00:00 2001 From: Isuru Samarathunga Date: Sun, 7 Sep 2025 21:37:36 +0530 Subject: [PATCH] HF --- Src/IAMath/inc/IAMath/Vec.hpp | 6 +++--- Src/IAMathTest/CMakeLists.txt | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Src/IAMath/inc/IAMath/Vec.hpp b/Src/IAMath/inc/IAMath/Vec.hpp index fe157de..4369f60 100644 --- a/Src/IAMath/inc/IAMath/Vec.hpp +++ b/Src/IAMath/inc/IAMath/Vec.hpp @@ -28,7 +28,7 @@ namespace ia::iam _value_type Data[2]; }; struct { - _value_type X{}, Y{}; + _value_type X, Y; }; struct { _value_type U, V; @@ -85,7 +85,7 @@ namespace ia::iam _value_type Data[3]; }; struct { - _value_type X{}, Y{}, Z{}; + _value_type X, Y, Z; }; struct { _value_type R, G, B; @@ -142,7 +142,7 @@ namespace ia::iam _value_type Data[4]; }; struct { - _value_type X{}, Y{}, Z{}, W{}; + _value_type X, Y, Z, W; }; struct { _value_type R, G, B, A; diff --git a/Src/IAMathTest/CMakeLists.txt b/Src/IAMathTest/CMakeLists.txt index 222f157..6c47dfc 100644 --- a/Src/IAMathTest/CMakeLists.txt +++ b/Src/IAMathTest/CMakeLists.txt @@ -1,8 +1,6 @@ add_executable(IAMathTest imp/cpp/Main.cpp) target_compile_options(IAMathTest PRIVATE - "-g" - "-O0" "-D__IA_DEBUG=1" )