Unused parameter warnings will be the death of me someday

This commit is contained in:
ThePhD 2017-02-18 22:20:52 -05:00
parent 295bc3a911
commit 0c8ec828d5

View File

@ -518,7 +518,7 @@ TEST_CASE("usertype/simple-call-constructor", "ensure that all kinds of call-bas
);
lua.new_simple_usertype<r_test>("r_test",
sol::call_constructor, [](sol::table t) {
sol::call_constructor, [](sol::table) {
return r_test(22);
}
);