Skip to content

Commit

Permalink
gni
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Feb 7, 2024
1 parent 5a648f4 commit 9dfda87
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions glm/detail/type_vec4.inl
Original file line number Diff line number Diff line change
Expand Up @@ -361,13 +361,8 @@ namespace detail
template<typename T, qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR T& vec<4, T, Q>::operator[](typename vec<4, T, Q>::length_type i)
{
<<<<<<< HEAD
GLM_ASSERT_LENGTH(i, this->length());
switch(i)
=======
assert(i >= 0 && i < this->length());
switch (i)
>>>>>>> 5c1da05b (Simd improvement)
{
default:
case 0:
Expand All @@ -384,13 +379,8 @@ namespace detail
template<typename T, qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR T const& vec<4, T, Q>::operator[](typename vec<4, T, Q>::length_type i) const
{
<<<<<<< HEAD
GLM_ASSERT_LENGTH(i, this->length());
switch(i)
=======
assert(i >= 0 && i < this->length());
switch (i)
>>>>>>> 5c1da05b (Simd improvement)
{
default:
case 0:
Expand Down

0 comments on commit 9dfda87

Please sign in to comment.