Fix compilation errors

This commit is contained in:
fearlessTobi 2018-09-05 02:19:55 +02:00
parent bf964ac6e9
commit f3f4871275

View file

@ -174,7 +174,7 @@ public:
bool Close();
template <typename T>
size_t ReadArray(T* data, size_t length) const {
size_t ReadArray(T* data, size_t length) {
static_assert(std::is_trivially_copyable_v<T>,
"Given array does not consist of trivially copyable objects");
@ -208,7 +208,7 @@ public:
}
template <typename T>
size_t ReadBytes(T* data, size_t length) const {
size_t ReadBytes(T* data, size_t length) {
static_assert(std::is_trivially_copyable_v<T>, "T must be trivially copyable");
return ReadArray(reinterpret_cast<char*>(data), length);
}