Kajetan Johannes Hammerle %!s(int64=4) %!d(string=hai) anos
pai
achega
1e3580fcf3
Modificáronse 2 ficheiros con 1 adicións e 4 borrados
  1. 0 4
      math/Vector.h
  2. 1 0
      utils/Array.h

+ 0 - 4
math/Vector.h

@@ -27,10 +27,6 @@ public:
         }
     }
 
-    Vector& set(float, float) = delete;
-    Vector& set(float, float, float) = delete;
-    Vector& set(float, float, float, float) = delete;
-
     Vector& setAngles(float, float) = delete;
     Vector cross(const Vector&) const = delete;
 

+ 1 - 0
utils/Array.h

@@ -1,6 +1,7 @@
 #ifndef ARRAY_H
 #define ARRAY_H
 
+#include <array>
 #include "utils/StringBuffer.h"
 
 template<typename T, int N>