mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
minor fixes
This commit is contained in:
parent
afaecbad2c
commit
038ae3b99b
@ -23,7 +23,7 @@ int main() {
|
|||||||
lua.script("x, y = multi_tuple()");
|
lua.script("x, y = multi_tuple()");
|
||||||
lua.script("assert(x == 10 and y == 'goodbye')");
|
lua.script("assert(x == 10 and y == 'goodbye')");
|
||||||
|
|
||||||
auto multi = lua.get<sol::function>("multi");
|
auto multi = lua.get<sol::function>("multi_tuple");
|
||||||
int first;
|
int first;
|
||||||
std::string second;
|
std::string second;
|
||||||
// tie the values
|
// tie the values
|
||||||
@ -63,7 +63,7 @@ int main() {
|
|||||||
sol::variadic_results values;
|
sol::variadic_results values;
|
||||||
values.push_back({ L, sol::in_place_type<int>, a });
|
values.push_back({ L, sol::in_place_type<int>, a });
|
||||||
values.push_back({ L, sol::in_place_type<bool>, b });
|
values.push_back({ L, sol::in_place_type<bool>, b });
|
||||||
values.push_back({ L, sol::in_place_type<const char*>, "awoo" });
|
values.push_back({ L, sol::in_place, "awoo" });
|
||||||
return values;
|
return values;
|
||||||
});
|
});
|
||||||
lua.script("print('calling multi_vars')");
|
lua.script("print('calling multi_vars')");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user