/* tests/test_stl.cpp -- STL type casters Copyright (c) 2017 Wenzel Jakob All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ #include "pybind11_tests.h" #include "constructor_stats.h" #include #include #include // Test with `std::variant` in C++17 mode, or with `boost::variant` in C++11/14 #if defined(PYBIND11_HAS_VARIANT) using std::variant; #elif defined(PYBIND11_TEST_BOOST) && (!defined(_MSC_VER) || _MSC_VER >= 1910) # include # define PYBIND11_HAS_VARIANT 1 using boost::variant; namespace pybind11 { namespace detail { template struct type_caster> : variant_caster> {}; template <> struct visit_helper { template static auto call(Args &&...args) -> decltype(boost::apply_visitor(args...)) { return boost::apply_visitor(args...); } }; }} // namespace pybind11::detail #endif PYBIND11_MAKE_OPAQUE(std::vector>); /// Issue #528: templated constructor struct TplCtorClass { template TplCtorClass(const T &) { } bool operator==(const TplCtorClass &) const { return true; } }; namespace std { template <> struct hash { size_t operator()(const TplCtorClass &) const { return 0; } }; } // namespace std template