summary refs log tree commit diff
path: root/src/Common
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-01-30 15:23:41 +0100
committerMel <einebeere@gmail.com>2024-01-30 15:23:41 +0100
commit9bdc36787a5ace22e16d5b24c77218fa349c691e (patch)
tree0212d3225eaf84f7f04cf5ea374514e46c80b8ec /src/Common
parent377f2b1f2500b0feae1bfb5cc50b7038b1041c22 (diff)
downloadmeowcraft-9bdc36787a5ace22e16d5b24c77218fa349c691e.tar.zst
meowcraft-9bdc36787a5ace22e16d5b24c77218fa349c691e.zip
More necessary headers for Linux build
Diffstat (limited to 'src/Common')
-rw-r--r--src/Common/FlexArray.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Common/FlexArray.hpp b/src/Common/FlexArray.hpp
index 4a648b6..c0719fd 100644
--- a/src/Common/FlexArray.hpp
+++ b/src/Common/FlexArray.hpp
@@ -1,6 +1,7 @@
 #pragma once
 
 #include <array>
+#include <stdexcept>
 #include "Sizes.hpp"
 
 template <typename T, uint S>