Kajetan Johannes Hammerle 3 лет назад
Родитель
Сommit
6b0ac15fb2
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      math/Vector.h

+ 1 - 1
math/Vector.h

@@ -21,7 +21,7 @@ public:
     Vector(float a, Args&&... args) {
         const int size = sizeof...(args) + 1;
         float init[size] = {a, args...};
-        static_assert(N == size, "vector size and amount of float arguments does not match");
+        static_assert(N == size, "vector size and amount of float arguments do not match");
         for(int i = 0; i < N; i++) {
             values[i] = init[i];
         }