mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
update single
This commit is contained in:
parent
71847ff64a
commit
d01d49aa7e
|
@ -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 {};
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user