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
I tried develop branch because there is a fix for passing nil from lua to C function expecting shared_ptr (or sol::object) using luajit as VM.
It is fixed in commit ff3f254
However it looks like commit 64e3823 breaks the default container wrapper.
Simple example:
#include<map>
#include<sol/sol.hpp>intmain() {
std::map<std::string, bool> m;
sol::state state;
state["m"] = m;
}
I tried develop branch because there is a fix for passing nil from lua to C function expecting shared_ptr (or sol::object) using luajit as VM.
It is fixed in commit ff3f254
However it looks like commit 64e3823 breaks the default container wrapper.
Simple example:
System: linux, clang, luajit
Output:
output.log
The text was updated successfully, but these errors were encountered: