compile and run in windows (improvements needed)

This commit is contained in:
Ondrej Novak 2025-02-08 09:19:55 +01:00
parent f55f92a88b
commit f70b29abab
83 changed files with 415 additions and 3747 deletions

View file

@ -43,8 +43,7 @@ void temp_storage_store(const char *name, const void *data, int32_t size) {
v.resize(size+1);
v[size] = 0;
v.resize(size);
std::copy(b,e, v.begin());
v[size] = 0;
std::copy(b,e, v.begin());
}
int32_t temp_storage_find(const char *name) {