summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-10-06 01:00:39 +0200
committerMel <einebeere@gmail.com>2022-10-06 01:00:39 +0200
commit1474eb20033d809f85621b8b1060df362a239557 (patch)
tree6cffd9e2ff62ea067890df87474a995deffae219 /src
parentf66811b772c81fc182e353308b1c1a3667201e9b (diff)
downloadmeowcraft-1474eb20033d809f85621b8b1060df362a239557.tar.zst
meowcraft-1474eb20033d809f85621b8b1060df362a239557.zip
Fix for glibc and Linux
Diffstat (limited to 'src')
-rw-r--r--src/Math/Vector.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Math/Vector.hpp b/src/Math/Vector.hpp
index b6690ef..cb5eb24 100644
--- a/src/Math/Vector.hpp
+++ b/src/Math/Vector.hpp
@@ -5,6 +5,7 @@
 #include <iostream>
 #include <iterator>
 #include <cmath>
+#include <functional>
 
 template <size_t S, typename T = float>
 struct Vector {