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" )