fix cpp_object usertype error

fix usertype_call_from_c++.cpp cpp_object usertype error
This commit is contained in:
likun123687 2023-02-10 16:05:52 +08:00 committed by GitHub
parent 19898d8d3e
commit 22c4dc6296
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ int main(int, char*[]) {
};
lua.new_usertype<cpp_object>(
"test", "value", &cpp_object::value);
"cpp_object", "value", &cpp_object::value);
lua.new_usertype<test>("test", "func", &test::func);
lua.script(
"function test:lua_func(obj) print('lua_func', "