mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
fix uninitialized pointer
This commit is contained in:
parent
7bc280d785
commit
d6ef1dc15f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue