Explorar el Código

Add missing header to Vector2 class

Patrick-Christopher Mattulat hace 1 año
padre
commit
a96564752b
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      source/ls_math/vector/Vector2.cpp

+ 2 - 1
source/ls_math/vector/Vector2.cpp

@@ -3,11 +3,12 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-08-05
- * Changed:         2022-11-06
+ * Changed:         2022-11-08
  *
  * */
 
 #include <ls_math/vector/Vector2.hpp>
+#include <limits>
 #include <cmath>
 
 ls::math::vector::Vector2::Vector2(const ls::math::core::type::vector2_component &_x, const ls::math::core::type::vector2_component &_y)