summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-06-14 18:46:38 +0200
committerlouiz’ <louiz@louiz.org>2017-06-14 18:47:01 +0200
commita77c982f6325408cbcc0afc9876edf28d095b3aa (patch)
treebaabe48915a50cd3bb34b862623db9b7f8479ff4
parent34ed2cc1a97484942ba316ed604b75c8506f355f (diff)
downloadbiboumi-a77c982f6325408cbcc0afc9876edf28d095b3aa.tar.gz
biboumi-a77c982f6325408cbcc0afc9876edf28d095b3aa.tar.bz2
biboumi-a77c982f6325408cbcc0afc9876edf28d095b3aa.tar.xz
biboumi-a77c982f6325408cbcc0afc9876edf28d095b3aa.zip
Fix cstdint -> cstddef, to fix compilation on freebsd
-rw-r--r--src/database/column.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/column.hpp b/src/database/column.hpp
index 22f4254..111f9ca 100644
--- a/src/database/column.hpp
+++ b/src/database/column.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <cstdint>
+#include <cstddef>
template <typename T>
struct Column