update single

This commit is contained in:
ThePhD 2018-07-29 13:21:32 -04:00
parent 71847ff64a
commit d01d49aa7e
2 changed files with 6 additions and 7 deletions

View File

@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// This file was generated with a script. // This file was generated with a script.
// Generated 2018-07-23 14:58:57.359452 UTC // Generated 2018-07-29 17:21:21.230864 UTC
// This header was generated with sol v2.20.4 (revision d343264) // This header was generated with sol v2.20.4 (revision 71847ff)
// https://github.com/ThePhD/sol2 // https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_HPP #ifndef SOL_SINGLE_INCLUDE_HPP
@ -1196,6 +1196,7 @@ namespace sol {
#include <type_traits> #include <type_traits>
#include <cstdint> #include <cstdint>
#include <memory> #include <memory>
#include <array>
#include <iterator> #include <iterator>
#include <iosfwd> #include <iosfwd>
@ -4437,7 +4438,7 @@ namespace sol {
static void construct(T&& obj, Args&&... args) { static void construct(T&& obj, Args&&... args) {
typedef meta::unqualified_t<T> Tu; typedef meta::unqualified_t<T> Tu;
std::allocator<Tu> alloc{}; std::allocator<Tu> alloc{};
std::allocator_traits<std::allocator<Tu>>::construct(alloc, obj, std::forward<Args>(args)...); std::allocator_traits<std::allocator<Tu>>::construct(alloc, std::forward<T>(obj), std::forward<Args>(args)...);
} }
template <typename T, typename... Args> template <typename T, typename... Args>
@ -4553,8 +4554,6 @@ namespace sol {
// beginning of sol/filters.hpp // beginning of sol/filters.hpp
#include <array>
namespace sol { namespace sol {
namespace detail { namespace detail {
struct filter_base_tag {}; struct filter_base_tag {};

View File

@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// This file was generated with a script. // This file was generated with a script.
// Generated 2018-07-23 14:58:57.506417 UTC // Generated 2018-07-29 17:21:21.574860 UTC
// This header was generated with sol v2.20.4 (revision d343264) // This header was generated with sol v2.20.4 (revision 71847ff)
// https://github.com/ThePhD/sol2 // https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP #ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP