update for gcc10 compilation

This commit is contained in:
faizol
2020-05-05 14:58:56 +08:00
committed by Roland Bock
parent 73df6df867
commit cd20805b3e
2 changed files with 2 additions and 1 deletions

View File

@@ -28,6 +28,7 @@
#define SQLPP_BLOB_DATA_TYPE_H
#include <vector>
#include <cstdint>
#include <sqlpp11/type_traits.h>
#include <sqlpp11/logic.h>

View File

@@ -60,7 +60,7 @@ namespace sqlpp
};
public:
using size = std::integral_constant<size_t, sizeof...(Elements)>;
using size = std::integral_constant<std::size_t, sizeof...(Elements)>;
using _is_type_set = std::true_type;
template <typename T>