Add write to new FileStore

This commit is contained in:
2018-03-10 23:31:21 -06:00
parent 4d86f0e3d9
commit efe8bf3e46
4 changed files with 240 additions and 43 deletions

View File

@@ -51,6 +51,12 @@ typedef uint32_t uintptr_t;
#error size_t, intptr_t, and uintptr_t undefined
#endif
namespace std {
typedef decltype(nullptr) nullptr_t;
}
static_assert(sizeof(int8_t) == 1, "int8_t is wrong size");
static_assert(sizeof(int16_t) == 2, "int16_t is wrong size");
static_assert(sizeof(int32_t) == 4, "int32_t is wrong size");