소스 검색

Add missing header to Vector2 class

Patrick-Christopher Mattulat 2 년 전
부모
커밋
a96564752b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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)