include cstddef to compile on linux (#310)

This commit is contained in:
2023-01-13 23:17:18 -07:00
committed by GitHub
parent 6729983892
commit 1996985b50

View File

@@ -12,6 +12,7 @@
// Tried using boost::multi_array, but it kept causing weird issues, so I decided to make my own.
#include <vector>
#include <cstddef>
template<typename Type, typename Alloc = std::allocator<Type>> class vector2d {
friend class row_ref;