aboutsummaryrefslogtreecommitdiff
path: root/vendor/lua/5.2/lua.odin
diff options
context:
space:
mode:
authorWaqar Ahmed <waqar.17a@gmail.com>2024-11-18 23:58:02 +0500
committerGitHub <noreply@github.com>2024-11-18 23:58:02 +0500
commitaafa7a04ab1c7bbc7d2bb26f3fdd68a369eb98da (patch)
tree22e5aaedd044db866b1e900831216aefd8aba9a5 /vendor/lua/5.2/lua.odin
parent8f845c7f73fa42d4818dc019a1bd0f4db00f3a33 (diff)
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) ```
Diffstat (limited to 'vendor/lua/5.2/lua.odin')
-rw-r--r--vendor/lua/5.2/lua.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/lua/5.2/lua.odin b/vendor/lua/5.2/lua.odin
index d5d8ec253..bc47479e3 100644
--- a/vendor/lua/5.2/lua.odin
+++ b/vendor/lua/5.2/lua.odin
@@ -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 {