mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
cut off containers if they are not specialization
This commit is contained in:
parent
47bbe98e20
commit
1f90b049f2
|
@ -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 2018-10-28 14:26:05.925454 UTC
|
||||
// This header was generated with sol v2.20.4 (revision a19a5a3)
|
||||
// Generated 2018-11-09 17:41:04.453384 UTC
|
||||
// This header was generated with sol v2.20.4 (revision 47bbe98)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_HPP
|
||||
|
@ -10077,6 +10077,7 @@ namespace stack {
|
|||
struct qualified_getter<T, std::enable_if_t<
|
||||
!std::is_reference<T>::value
|
||||
&& is_container<meta::unqualified_t<T>>::value
|
||||
&& std::is_default_constructible<meta::unqualified_t<T>>::value
|
||||
&& !is_lua_primitive<T>::value
|
||||
&& !is_transparent_argument<T>::value
|
||||
>> {
|
||||
|
|
|
@ -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 2018-10-28 14:26:06.124383 UTC
|
||||
// This header was generated with sol v2.20.4 (revision a19a5a3)
|
||||
// Generated 2018-11-09 17:41:04.668612 UTC
|
||||
// This header was generated with sol v2.20.4 (revision 47bbe98)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP
|
||||
|
|
|
@ -52,6 +52,7 @@ namespace stack {
|
|||
struct qualified_getter<T, std::enable_if_t<
|
||||
!std::is_reference<T>::value
|
||||
&& is_container<meta::unqualified_t<T>>::value
|
||||
&& std::is_default_constructible<meta::unqualified_t<T>>::value
|
||||
&& !is_lua_primitive<T>::value
|
||||
&& !is_transparent_argument<T>::value
|
||||
>> {
|
||||
|
|
Loading…
Reference in New Issue
Block a user