fix uninitialized pointer

This commit is contained in:
LoganDark 2021-11-08 13:28:38 -08:00
parent 7bc280d785
commit d6ef1dc15f
No known key found for this signature in database
GPG key ID: B8C37CEDE1AC60EA

View file

@ -37,9 +37,9 @@ struct CompileOptions
const char* vectorLib = nullptr;
const char* vectorCtor = nullptr;
// optional array of globals that are mutable; disables the import optimization for fields accessed through them
// array of globals that are mutable; disables the import optimization for fields accessed through them
// use NULL to end the array
const char** mutableGlobalNames;
const char** mutableGlobalNames = nullptr;
};
class CompileError : public std::exception