Ver Fonte

clean up

Kajetan Johannes Hammerle há 3 anos atrás
pai
commit
1e3580fcf3
2 ficheiros alterados com 1 adições e 4 exclusões
  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>