-
Hey, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
mlua import: |
Beta Was this translation helpful? Give feedback.
-
After further research, I've found that luac5.1 also generates bytecode where the size of size_t is 8 bytes. It seems because I'm on a 64 bit system it's making size_t be 64 bits? I guess that makes sense, I'll mark this discussion as answered. |
Beta Was this translation helpful? Give feedback.
-
#include <stdio.h>
int main() {
printf("%lu\n", sizeof(size_t));
} prints |
Beta Was this translation helpful? Give feedback.
After further research, I've found that luac5.1 also generates bytecode where the size of size_t is 8 bytes. It seems because I'm on a 64 bit system it's making size_t be 64 bits? I guess that makes sense, I'll mark this discussion as answered.