瀏覽代碼

Add missing header to Vector2 class

Patrick-Christopher Mattulat 1 年之前
父節點
當前提交
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)