You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I change to using sol 3.3.x or 4.x the out put from the program is:
/home/ian/projects/lua/sol/build/source/idempotence> /home/ian/projects/lua/sol/build/source/idempotence/indempotence
sol.TestClass*: 0x7e2cd8
Hello World!!!
sol.TestClass*: 0x7e5718
Hello World!!!
sol.TestClass*: 0x7e7178
Hello World!!!
sol.TestClass*: 0x7e2998
An unexpected error has occurred: sol: runtime error: [string "..."]:3: attempt to index a sol.TestClass* value (global 'testClass')
stack traceback:
[string "..."]:3: in main chunk
[sol2] An error occurred and has been passed to an error handler: sol: runtime error: [string "..."]:3: attempt to index a sol.TestClass* value (global 'testClass')
stack traceback:
[string "..."]:3: in main chunk
I have seen similar code failing the first time the user type was re-declared. An other instance it was after 10 re-declarations.
My expectations is that the example code should work regardless of the number of re-declarations. I.e. it should be idempotent.
The text was updated successfully, but these errors were encountered:
I am working on Fedora 37 using gcc 12.3.1 and lua 5.4.6. The following code works as expected with sol v 3.2.3.
#include "TestClass.h"
#define SOL_ALL_SAFETIES_ON 1
#include "sol/sol.hpp"
#include
#include
int main()
{
std::string script
{
R"(
print(testClass)
testClass:greet()
)"
};
}
The output from this code is as follows:
sol.TestClass*: 0x2167dc8
Hello World!!!
userdata: 0x2169f98
Hello World!!!
userdata: 0x216b188
Hello World!!!
userdata: 0x216c378
Hello World!!!
userdata: 0x216d568
Hello World!!!
userdata: 0x21678d8
Hello World!!!
userdata: 0x2169a18
Hello World!!!
userdata: 0x216adf8
Hello World!!!
userdata: 0x216df18
Hello World!!!
userdata: 0x216eff8
Hello World!!!
userdata: 0x2170188
Hello World!!!
userdata: 0x2171378
Hello World!!!
userdata: 0x2172568
Hello World!!!
userdata: 0x216d088
Hello World!!!
userdata: 0x216c378
Hello World!!!
userdata: 0x2161cd8
Hello World!!!
If I change to using sol 3.3.x or 4.x the out put from the program is:
/home/ian/projects/lua/sol/build/source/idempotence> /home/ian/projects/lua/sol/build/source/idempotence/indempotence
sol.TestClass*: 0x7e2cd8
Hello World!!!
sol.TestClass*: 0x7e5718
Hello World!!!
sol.TestClass*: 0x7e7178
Hello World!!!
sol.TestClass*: 0x7e2998
An unexpected error has occurred: sol: runtime error: [string "..."]:3: attempt to index a sol.TestClass* value (global 'testClass')
stack traceback:
[string "..."]:3: in main chunk
[sol2] An error occurred and has been passed to an error handler: sol: runtime error: [string "..."]:3: attempt to index a sol.TestClass* value (global 'testClass')
stack traceback:
[string "..."]:3: in main chunk
I have seen similar code failing the first time the user type was re-declared. An other instance it was after 10 re-declarations.
My expectations is that the example code should work regardless of the number of re-declarations. I.e. it should be idempotent.
The text was updated successfully, but these errors were encountered: