From 27a8dde1e6532d58e7ca3008ac9c110e1c8b5c7a Mon Sep 17 00:00:00 2001 From: ThePhD Date: Tue, 3 May 2016 14:21:29 -0400 Subject: [PATCH] This commit adds some QoI constructor keys / types, as well as implements `make_object`. The documentation has been updated as well. Closes #78 Closes #77 Closes #76 Closes #75 --- docs/source/api/overload.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/api/overload.rst b/docs/source/api/overload.rst index 641928aa..399b409d 100644 --- a/docs/source/api/overload.rst +++ b/docs/source/api/overload.rst @@ -52,7 +52,7 @@ You then use it just like you would for any other part of the api: // regular function "is_cute", &pup::is_cute, // overloaded function - "bark", sol::overloaded( &pup::bark, &picky_bark ) + "bark", sol::overload( &pup::bark, &picky_bark ) ); Thusly, doing the following in Lua: