Update 'src/include/disk/page.h'

Added <cstddef> to page (std::byte was not found by some compilers)
This commit is contained in:
Jan Mühlig 2020-04-29 10:11:52 +02:00
parent 406befa0cb
commit 045e48b12b
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#include <cstdint>
#include <cstring>
#include <iostream>
#include <cstddef>
namespace beedb::disk
{