Fix boost/C++17 hash mismatch

This commit is contained in:
ThePhD 2018-02-23 11:30:34 -05:00
parent 12139b8cfb
commit b60132ef71
3 changed files with 6 additions and 6 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 2018-02-23 02:31:12.878607 UTC
// This header was generated with sol v2.19.4 (revision 32cadc0)
// Generated 2018-02-23 16:30:19.109420 UTC
// This header was generated with sol v2.19.4 (revision 12139b8)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_HPP
@ -17267,7 +17267,7 @@ namespace sol {
namespace sol {
namespace usertype_detail {
#ifdef SOL_USE_BOOST
#if defined(SOL_USE_BOOST) && !defined(SOL_CXX17_FEATURES)
template <typename K, typename V, typename H = boost::hash<K>, typename E = std::equal_to<>>
using map_t = boost::unordered_map<K, V, H, E>;
#else

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 2018-02-23 02:31:13.591197 UTC
// This header was generated with sol v2.19.4 (revision 32cadc0)
// Generated 2018-02-23 16:30:19.313545 UTC
// This header was generated with sol v2.19.4 (revision 12139b8)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP

View File

@ -48,7 +48,7 @@
namespace sol {
namespace usertype_detail {
#ifdef SOL_USE_BOOST
#if defined(SOL_USE_BOOST) && !defined(SOL_CXX17_FEATURES)
template <typename K, typename V, typename H = boost::hash<K>, typename E = std::equal_to<>>
using map_t = boost::unordered_map<K, V, H, E>;
#else