Procházet zdrojové kódy

Add missing header to Vector2 class

Patrick-Christopher Mattulat před 2 roky
rodič
revize
a96564752b
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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)