Update single

This commit is contained in:
ThePhD 2020-09-26 06:48:11 -04:00
parent 000fa31809
commit 1fb483db91
No known key found for this signature in database
GPG Key ID: 1509DB1C0F702BFA
3 changed files with 7 additions and 7 deletions

View File

@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// This file was generated with a script.
// Generated 2020-09-26 10:44:02.641191 UTC
// This header was generated with sol v3.2.1 (revision e89b6ac)
// Generated 2020-09-26 10:47:52.233754 UTC
// This header was generated with sol v3.2.1 (revision 000fa31)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_CONFIG_HPP

View File

@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// This file was generated with a script.
// Generated 2020-09-26 10:44:02.626193 UTC
// This header was generated with sol v3.2.1 (revision e89b6ac)
// Generated 2020-09-26 10:47:52.207756 UTC
// This header was generated with sol v3.2.1 (revision 000fa31)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP

View File

@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// This file was generated with a script.
// Generated 2020-09-26 10:44:01.822191 UTC
// This header was generated with sol v3.2.1 (revision e89b6ac)
// Generated 2020-09-26 10:47:51.277755 UTC
// This header was generated with sol v3.2.1 (revision 000fa31)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_HPP
@ -10627,7 +10627,7 @@ namespace sol {
template <typename T, typename Arg, typename... Args>
int push_reference(lua_State* L, Arg&& arg, Args&&... args) {
using use_reference_tag = meta::all<std::is_lvalue_reference<T>,
meta::neg<std::is_const<T>>,
meta::neg<std::is_const<std::remove_reference_t<T>>>,
meta::neg<is_lua_primitive<meta::unqualified_t<T>>>,
meta::neg<is_unique_usertype<meta::unqualified_t<T>>>>;
using Tr = meta::conditional_t<use_reference_tag::value, detail::as_reference_tag, meta::unqualified_t<T>>;