Просмотр исходного кода

vector_math: remove dead template parameter

wwylele 9 лет назад
Родитель
Сommit
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);
     }