Преглед изворни кода

vector_math: remove dead template parameter

wwylele пре 9 година
родитељ
комит
fe44e843fe
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/common/vector_math.h

+ 1 - 1
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);
     }