mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
Fix typo, its supposed to be #config
Otherwise compile errors out when importing the file with the error:
```odin
vendor/lua/5.2/lua.odin(10:15) Error: Undeclared name: config
LUA_SHARED :: config(LUA_SHARED, false)
```
This commit is contained in:
2
vendor/lua/5.2/lua.odin
vendored
2
vendor/lua/5.2/lua.odin
vendored
@@ -7,7 +7,7 @@ import c "core:c/libc"
|
||||
|
||||
#assert(size_of(c.int) == size_of(b32))
|
||||
|
||||
LUA_SHARED :: config(LUA_SHARED, false)
|
||||
LUA_SHARED :: #config(LUA_SHARED, false)
|
||||
|
||||
when LUA_SHARED {
|
||||
when ODIN_OS == .Windows {
|
||||
|
||||
Reference in New Issue
Block a user