Browse Source

vector_math: remove dead template parameter

nce_cpp
wwylele 9 years ago
parent
commit
acdf5035be
  1. 2
      src/common/vector_math.h

2
src/common/vector_math.h

@ -461,7 +461,7 @@ public:
z -= other.z;
w -= other.w;
}
template <typename Q = T>
Vec4<decltype(-T{})> operator-() const {
return MakeVec(-x, -y, -z, -w);
}

Loading…
Cancel
Save